Skip to content

Commit 7187b2e

Browse files
Drop content-wrapper divs, keep wrapper divs
1 parent f26c503 commit 7187b2e

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

layouts/_default/single.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ <h1>{{ .Title }}</h1>
66
{{ if .Params.Subtitle }}
77
<h5 class="subtitle">{{ .Params.Subtitle }}</h5>
88
{{ end }}
9-
<div class="content-wrapper">
10-
{{ .Content }}
11-
</div>
9+
{{ .Content }}
1210
</div>
1311
{{ partial "shortcuts.html" . }}
1412
</section>

layouts/partials/posts/list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h1>{{ .Title }}</h1>
3535
<h5 class="subtitle">{{ .Params.Subtitle }}</h5>
3636
{{ end }}
3737
{{ if .Content }}
38-
<div class="content-wrapper">
38+
<div>
3939
{{ .Content }}
4040
</div>
4141
{{ end }}

layouts/partials/posts/post.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h5 class="subtitle">{{ .Params.Subtitle }}</h5>
1515
</div>
1616
{{ end }}
1717
{{ end }}
18-
<div class="content-wrapper">
18+
<div>
1919
{{ .Content }}
2020
</div>
2121
{{ partial "posts/comments.html" .}}

0 commit comments

Comments
 (0)