Show article date on tag indices.

This commit is contained in:
Ethan Dalool 2020-09-01 16:40:45 -07:00
parent 385c02e868
commit 7ed03d8d79

View file

@ -344,7 +344,7 @@ def make_tag_page(index, path):
<ul>
{% for article in articles %}
<li>
<a href="/writing/{{article.web_path}}">{{article.title|e}}</a>
<a href="/writing/{{article.web_path}}">{{article.date}} - {{article.title|e}}</a>
</li>
{% endfor %}
</ul>