From 4384dc784991f8722e5bb3f09064161d0bf1eb9c Mon Sep 17 00:00:00 2001 From: 53hornet <53hornet@gmail.com> Date: Fri, 5 Apr 2019 13:03:32 -0400 Subject: Finished all layouts, added first couple of posts, added favicon. --- _layouts/post.liquid | 69 ++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 64 insertions(+), 5 deletions(-) (limited to '_layouts/post.liquid') diff --git a/_layouts/post.liquid b/_layouts/post.liquid index 26e55c6..d39007f 100644 --- a/_layouts/post.liquid +++ b/_layouts/post.liquid @@ -3,12 +3,71 @@ {{ page.title }} - + + -
-

{{ page.title }}

- {{ page.content }} -
+ +
+ +
+ {% include "nav.liquid" %} +
+ + + +
+
+ +

+ {{ page.title }} +

+ +

+ {{ page.published_date | date: "%A, %b %e, %Y" }} +

+ + + + {% if page.categories %} + {% for category in page.categories %} +

+ {{ category }} +

+ {% endfor %} + {% endif %} + + + + {% if page.tags %} + {% for tag in page.tags %} + + {{ tag }} + + {% endfor %} + {% endif %} + +
+
+ + +
+ + + +
+
+
+ {{ page.content }} +
+
+
+ + + {% include "footer.liquid" %} + -- cgit v1.2.3