summaryrefslogtreecommitdiff
path: root/_layouts/post.liquid
diff options
context:
space:
mode:
author53hornet <53hornet@gmail.com>2019-04-07 15:52:35 -0400
committer53hornet <53hornet@gmail.com>2019-04-07 15:52:35 -0400
commitf48338109e2170d9c7c9ec4cd884e57f94197791 (patch)
treee06dc3e4219e1bc3c622f3a40bf61b264ca30c7f /_layouts/post.liquid
parent4384dc784991f8722e5bb3f09064161d0bf1eb9c (diff)
downloadcobalt-site-f48338109e2170d9c7c9ec4cd884e57f94197791.tar.xz
cobalt-site-f48338109e2170d9c7c9ec4cd884e57f94197791.zip
Updated look, footer, nav links.
Diffstat (limited to '_layouts/post.liquid')
-rw-r--r--_layouts/post.liquid15
1 files changed, 7 insertions, 8 deletions
diff --git a/_layouts/post.liquid b/_layouts/post.liquid
index d39007f..6c90a7e 100644
--- a/_layouts/post.liquid
+++ b/_layouts/post.liquid
@@ -31,25 +31,24 @@
</h2>
<!-- end title and date -->
- <!-- begin categories -->
+ <!-- begin categories and tags -->
{% if page.categories %}
{% for category in page.categories %}
- <h2 class="subtitle">
- {{ category }}
- </h2>
+ <span class="tag">
+ {{ category | downcase }}
+ </span>
{% endfor %}
{% endif %}
- <!-- end categories -->
- <!-- begin tags -->
{% if page.tags %}
{% for tag in page.tags %}
<span class="tag">
- {{ tag }}
+ {{ tag | downcase }}
</span>
{% endfor %}
{% endif %}
- <!-- end tags -->
+ <!-- end categories and tags -->
+
</div>
</div>
<!-- end hero body -->