summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-02-25 11:54:30 -0700
committerkballou <kballou@devnulllabs.io>2016-02-25 11:54:30 -0700
commitbef73f3e393acf92fa7768eff8ad7e8e59967d95 (patch)
treea3fe7dd0fa4c4ec3c6d347c5cdfd146fd41426fa
parentdb5a55ac01582b992c218f11c3dc51ae712b3e58 (diff)
downloadkennyballou.com-bef73f3e393acf92fa7768eff8ad7e8e59967d95.tar.gz
kennyballou.com-bef73f3e393acf92fa7768eff8ad7e8e59967d95.tar.xz
Remove unnecessary section
-rw-r--r--blag/layouts/index.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/blag/layouts/index.html b/blag/layouts/index.html
index 3e0966b..0e5937d 100644
--- a/blag/layouts/index.html
+++ b/blag/layouts/index.html
@@ -1,11 +1,9 @@
{{ partial "header.html" . }}
<body>
{{ partial "subheader.html" . }}
-<section id="main">
- {{ range first 10 .Data.Pages }}
- {{ if eq .Section "blog" }}
- {{ .Render "summary" }}
- {{ end }}
+{{ range first 10 .Data.Pages }}
+ {{ if eq .Section "blog" }}
+ {{ .Render "summary" }}
{{ end }}
-</section>
+{{ end }}
{{ partial "footer.html" . }}