From 624592d43e23bd26c3da30e255257b652d0e33ed Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Wed, 10 Jun 2020 10:38:54 +0200 Subject: Display tags more prominently --- _layouts/post.html | 8 +++++++- _pages/posts.html | 7 ++++++- 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

{{ page.title }} - {% if page.wip %}(WIP){% endif %} +
+ + {% if page.wip %}Work in progress!{% endif %} + {% for tag in page.tags %} + #{{ tag }} + {% endfor %} +

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.
  • {{ post.title }} - {{ post.date | date: "%Y-%m-%d" }} + + {{ post.date | date: "%Y-%m-%d" }} + {% for tag in post.tags %} + #{{ tag }} + {% endfor %} +
  • {% if forloop.last %} -- cgit v1.1