v6/site_test/tag.html

25 lines
487 B
HTML
Raw Normal View History

{% extends "default" %}
2024-12-31 14:29:11 -05:00
{% block titlevariable %}
{% set title = tag_name ~ " posts" %}
{% endblock %}
2024-12-31 14:29:11 -05:00
{% block content -%}
2025-01-13 00:33:58 -05:00
<h1>Posts tagged &lsquo;{{ tag_name }}&rsquo;</h1>
2025-01-13 00:33:58 -05:00
{% for year in years %}
<h2>{{ year }}</h2>
<ul>
{% for entry in posts_by_year[year] %}
<li>
<a href="{{ entry.permalink }}">
{{ entry.title }}
</a>
</li>
{% endfor %}
</ul>
{% endfor %}
2024-12-31 14:29:11 -05:00
{%- endblock %}