1
0
Fork 0
website/templates/tags_index.html
2023-03-29 21:56:58 +02:00

10 lines
223 B
HTML

{% extends "base.html" %}
{% block main -%}
<h1>Tags</h1>
<ul>
{% for tag in tags -%}
<li><a href="{{tag.absolute_path | safe}}">#{{ tag.slug }}</a></li>
{% endfor -%}
</ul>
{% endblock main -%}