From fa4c2a2af67c96375501e6d95c39721fb1c84555 Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Tue, 2 Aug 2022 15:31:02 -0600 Subject: [PATCH] Oops, add blog layout --- _layouts/blog.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 _layouts/blog.html diff --git a/_layouts/blog.html b/_layouts/blog.html new file mode 100644 index 0000000..355cbf9 --- /dev/null +++ b/_layouts/blog.html @@ -0,0 +1,15 @@ +--- +layout: default +--- + +{{content | smartify}} + +{% if page.tags.size != 0 %} +
+ Tags: + {% for tag in page.tags %} + {{tag}} + {% endfor %} +
+{% endif %} +