v6/site_test/archive.html

28 lines
635 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 -%}
2025-02-12 10:50:38 -05:00
<h1>Archive</h1>
{% for year in years %}
2025-02-11 21:08:16 -05:00
<div class="archive-list">
{% for entry in posts_by_year[year] %}
2025-02-11 21:08:16 -05:00
<div class="archive-entry">
2025-02-11 20:45:53 -05:00
<code><time datetime="{{ entry.date | iso_datetime }}">{{ entry.date | iso_date }}</time></code>
2024-12-31 14:29:11 -05:00
<a href="{{ entry.permalink }}">
{{ entry.title }}
</a>
2025-02-11 21:08:16 -05:00
</div>
2024-12-31 14:29:11 -05:00
{% endfor %}
2025-02-11 21:08:16 -05:00
</div>
{% if not loop.last %}
<hr>
{% endif %}
2024-12-31 14:29:11 -05:00
{% endfor %}
{%- endblock %}