dawn/templates/tags/single.html
2022-05-08 02:01:39 -04:00

17 lines
309 B
HTML

{% extends "index.html" %}
{% block content %}
<div class="post">
<h1 class="post_title">
::{{ term.name }}
</h1>
<a class="show_all_tags" href="{{ config.base_url | safe }}/tags">
see all tags
</a>
{{ post::list(pages=term.pages) }}
</div>
{% endblock content %}