Fix improper container

Fix an improper container. Now content correctly appears higher on the
page, and big images span the full page width.
This commit is contained in:
Michael Romero 2017-02-21 00:09:36 -08:00
parent d82dfdb5f7
commit dd08915adf

View File

@ -6,22 +6,17 @@
<body> <body>
{{ partial "nav.html" . }} {{ partial "nav.html" . }}
{{ partial "header_wp.html" . }}
<div role="main" class="container main-content"> <div class="container" role="main">
{{ partial "header_wp.html" . }}
{{ if eq .Type "post" }} {{ if eq .Type "post" }}
{{ partial "post.html" . }} {{ partial "post.html" . }}
{{ else if eq .Type "page" }} {{ else if eq .Type "page" }}
{{ partial "page.html" . }} {{ partial "page.html" . }}
{{ else }} {{ else }}
<div class="container" role="main"> NO MATCHING PARTIAL
NO MATCHING PARTIAL {{.Content}}
{{.Content}}
</div>
{{ end }} {{ end }}
</div> </div>
{{ partial "footer.html" . }} {{ partial "footer.html" . }}