v6/site_test/archive.html

23 lines
425 B
HTML
Raw Normal View History

{% extends "default" %}
2024-12-31 14:29:11 -05:00
{% block titlevariable %}
{% set title = "Archive" %}
{% endblock %}
2024-12-31 14:29:11 -05:00
{% block content -%}
{% for year in years %}
2024-12-31 14:29:11 -05:00
<h2>{{ year }}</h2>
<ul>
{% for entry in posts_by_year[year] %}
2024-12-31 14:29:11 -05:00
<li>
<a href="{{ entry.permalink }}">
{{ entry.title }}
</a>
</li>
{% endfor %}
</ul>
{% endfor %}
{%- endblock %}