Show article title instead of web name on tag page.

master
Ethan Dalool 2020-03-14 21:44:19 -07:00
parent 807fcda09e
commit d12f655d77
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ def maketagpage(index, path):
<ul>
{% for article in index.articles %}
<li>
<a href="/writing/{{article.web_path}}">{{article.md_file.parent.basename}}</a>
<a href="/writing/{{article.web_path}}">{{article.title}}</a>
</li>
{% endfor %}
</ul>