From a5686ff58440f0b3a8e1d6cd89e93e8191516c13 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 10 Mar 2017 21:06:20 +0000 Subject: [PATCH] Use table for tag list --- source/blog/tags/tag.html | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/source/blog/tags/tag.html b/source/blog/tags/tag.html index 6eaa424f..c03954f6 100644 --- a/source/blog/tags/tag.html +++ b/source/blog/tags/tag.html @@ -13,10 +13,28 @@ generator: {% block title %}{{ page.title }} "{{ page.tag }}"{% endblock %} {% block content %} -

"{{ page.tag }}"

- +

"{{ page.tag }}"

+ +
+ + + + + + + + + {% for post in page.tag_posts %} + + + + + {% endfor %} + +
Post TitleDate
+ + {{ post.title }} + + {{ post.date|date('j F Y') }}
+
{% endblock content %}