summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-02-25 11:10:39 -0700
committerkballou <kballou@devnulllabs.io>2016-02-25 11:10:39 -0700
commit1fd06a0d138b0c984293fb6ea3cbef90f1522b38 (patch)
tree1f5ec056d3dd9a4ffb69c49b8ada55a267713c8c
parentf09e4be41ded14547e18f8a004f03e500da3bf7e (diff)
downloadkennyballou.com-1fd06a0d138b0c984293fb6ea3cbef90f1522b38.tar.gz
kennyballou.com-1fd06a0d138b0c984293fb6ea3cbef90f1522b38.tar.xz
Fix missing closing body tag
-rw-r--r--blag/layouts/404.html1
-rw-r--r--blag/layouts/blog/single.html1
-rw-r--r--blag/layouts/partials/footer.html1
3 files changed, 1 insertions, 2 deletions
diff --git a/blag/layouts/404.html b/blag/layouts/404.html
index 0c15e5a..9e680c9 100644
--- a/blag/layouts/404.html
+++ b/blag/layouts/404.html
@@ -4,5 +4,4 @@
<p>The page you were looking for seems to have left the server or never
existed. If you think this may be an error, sorry. The web server thinks you
have an error.</p>
-</body>
{{ partial "footer.html" . }}
diff --git a/blag/layouts/blog/single.html b/blag/layouts/blog/single.html
index 12abff0..f07be03 100644
--- a/blag/layouts/blog/single.html
+++ b/blag/layouts/blog/single.html
@@ -14,5 +14,4 @@
</div>
{{ .Content}}
</article>
-</body>
{{ partial "footer.html" . }}
diff --git a/blag/layouts/partials/footer.html b/blag/layouts/partials/footer.html
index 05e7196..c80ebf8 100644
--- a/blag/layouts/partials/footer.html
+++ b/blag/layouts/partials/footer.html
@@ -10,4 +10,5 @@
</div>
</div>
</footer>
+</body>
</html>