v6/site_test/archive.html

32 lines
694 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-17 00:51:13 -05:00
<h1 class="headline">Archive</h1>
2025-02-12 10:50:38 -05:00
{% 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-17 00:51:13 -05:00
<code>
<time datetime="{{ entry.date | iso_datetime }}">
{{ entry.date | iso_date }}
</time>
</code>
2025-02-18 00:27:34 -05:00
<div>
<a href="{{ entry.permalink }}">
{{ entry.title }}
</a>
</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 %}