summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_layouts/post.html8
-rw-r--r--_pages/posts.html7
2 files changed, 13 insertions, 2 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index cc5caca..3cddce3 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -6,7 +6,13 @@ layout: default
<header>
<h1>
{{ page.title }}
- {% if page.wip %}<small>(WIP)</small>{% endif %}
+ <br>
+ <small>
+ {% if page.wip %}Work in progress!{% endif %}
+ {% for tag in page.tags %}
+ #{{ tag }}
+ {% endfor %}
+ </small>
</h1>
</header>
<main>
diff --git a/_pages/posts.html b/_pages/posts.html
index 3bdf010..48bc522 100644
--- a/_pages/posts.html
+++ b/_pages/posts.html
@@ -47,7 +47,12 @@ being referenced in my articles.
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
- <small>{{ post.date | date: "%Y-%m-%d" }}</small>
+ <small>
+ {{ post.date | date: "%Y-%m-%d" }}
+ {% for tag in post.tags %}
+ #{{ tag }}
+ {% endfor %}
+ </small>
</li>
{% if forloop.last %}