aboutsummaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-02-25 11:10:39 -0700
committerkballou <kballou@devnulllabs.io>2017-09-02 19:31:45 -0600
commit1acc4be711895ad6248f04424253c5d832f28f10 (patch)
tree105e5574c8d939c55439424c57c30bdbc0f29242 /layouts
parent9faf2797e283cc38bc5a04d17072199ff15cbecf (diff)
downloadblog.kennyballou.com-1acc4be711895ad6248f04424253c5d832f28f10.tar.gz
blog.kennyballou.com-1acc4be711895ad6248f04424253c5d832f28f10.tar.xz
Fix missing closing body tag
Diffstat (limited to 'layouts')
-rw-r--r--layouts/404.html1
-rw-r--r--layouts/blog/single.html1
-rw-r--r--layouts/partials/footer.html1
3 files changed, 1 insertions, 2 deletions
diff --git a/layouts/404.html b/layouts/404.html
index 0c15e5a..9e680c9 100644
--- a/layouts/404.html
+++ b/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/layouts/blog/single.html b/layouts/blog/single.html
index 12abff0..f07be03 100644
--- a/layouts/blog/single.html
+++ b/layouts/blog/single.html
@@ -14,5 +14,4 @@
</div>
{{ .Content}}
</article>
-</body>
{{ partial "footer.html" . }}
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 05e7196..c80ebf8 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -10,4 +10,5 @@
</div>
</div>
</footer>
+</body>
</html>