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/index.liquid | 6 ++--- _layouts/page.liquid | 6 ++--- _layouts/post.liquid | 69 +++++++++++++++++++++++++++++++++++++++++++++++---- 3 files changed, 70 insertions(+), 11 deletions(-) (limited to '_layouts') diff --git a/_layouts/index.liquid b/_layouts/index.liquid index 20ec588..9831a26 100644 --- a/_layouts/index.liquid +++ b/_layouts/index.liquid @@ -3,8 +3,8 @@ {{ page.title }} - - + + @@ -23,7 +23,7 @@
-
+
diff --git a/_layouts/page.liquid b/_layouts/page.liquid index 3d5e1ef..ebb3c7d 100644 --- a/_layouts/page.liquid +++ b/_layouts/page.liquid @@ -3,7 +3,7 @@ {{ page.title }} - + @@ -20,7 +20,7 @@
-
+

{{ page.title }}

@@ -33,7 +33,7 @@
-
+
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