diff options
Diffstat (limited to '')
| -rw-r--r-- | templates/tags/single.html | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/templates/tags/single.html b/templates/tags/single.html index b276f93..31432e4 100644 --- a/templates/tags/single.html +++ b/templates/tags/single.html @@ -1,12 +1,14 @@ {% extends "base.html" %} {% block content %} -<h1>Tag: {{ term.name }}</h1> -<ul> - {% for page in term.pages %} - <li> - <a href="{{ page.permalink }}">{{ page.title }}</a> - {{ page.date }} - </li> - {% endfor %} +<h1>#{{ term.name }}</h1> +<section> +<ul class="post-list"> +{% for page in term.pages %} + <li> + <a href="{{ page.permalink }}">{{ page.title }}</a> + <span class="post-date">{{ page.date | date(format="%d %h %Y")}}</span> + </li> +{% endfor %} </ul> {% endblock content %} |
