summaryrefslogtreecommitdiff
path: root/_layouts/post.liquid
diff options
context:
space:
mode:
author53hornet <53hornet@gmail.com>2019-04-28 12:55:42 -0400
committer53hornet <53hornet@gmail.com>2019-04-28 12:55:42 -0400
commit8ca0649687f4e6a352e081e992c80c90098e9074 (patch)
tree63f703c8d8ea6d8c1ac788c4057a18f4ba6d443c /_layouts/post.liquid
parente93119e2bb55291faff35c3eccc48c42f66d3789 (diff)
downloadcobalt-site-8ca0649687f4e6a352e081e992c80c90098e9074.tar.xz
cobalt-site-8ca0649687f4e6a352e081e992c80c90098e9074.zip
Moved svg icons and head metadata to includes.
Diffstat (limited to '_layouts/post.liquid')
-rw-r--r--_layouts/post.liquid9
1 files changed, 4 insertions, 5 deletions
diff --git a/_layouts/post.liquid b/_layouts/post.liquid
index 54bf211..382f17d 100644
--- a/_layouts/post.liquid
+++ b/_layouts/post.liquid
@@ -1,10 +1,7 @@
<!DOCTYPE html>
<html>
<head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{{ page.title }}</title>
- <link rel="stylesheet" href="/bulma.css">
+ {% include "head.liquid" %}
</head>
<body>
@@ -67,7 +64,9 @@
</section>
<!-- end main content -->
- {% include "footer.liquid" %}
+ <footer class="footer">
+ {% include "footer.liquid" %}
+ </footer>
</body>
</html>