homepage/tags.html
2020-04-02 22:28:57 +02:00

9 lines
207 B
HTML

{% for tag in site.tags %}
<h3>{{ tag[0] }}</h3>
<ul>
{% for post in tag[1] %}
<li><a href=" {{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}