summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-07-27 16:04:59 -0400
committerJakob Kaivo <jkk@ung.org>2019-07-27 16:04:59 -0400
commitb7346d1dd32608d4e48244fc28bbdba93e495da3 (patch)
tree32a566c49e8ef4c569f74fa236ba1a55c929837f
parentd54f40f830567890224f55232075fbb02b95bb40 (diff)
fix incorrect </html> in header -> </head>
-rw-r--r--blog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/blog.h b/blog.h
index 1aad4e7..4151a45 100644
--- a/blog.h
+++ b/blog.h
@@ -7,7 +7,7 @@
#define TITLE "<title>%s</title>\n"
#define ICON "<link type=\"shortcut icon\" href=\"/icon.png\">\n"
#define STYLE "<link rel=\"stylesheet\" type=\"text/css\" href=\"/style.css\">\n"
-#define BODY "</html>\n<body>\n"
+#define BODY "</head>\n<body>\n"
#define HTML_HEAD DOCTYPE HTML META TITLE ICON STYLE BODY