v6/site/archive.html

32 lines
694 B
HTML
Raw Normal View History

2025-02-20 10:13:26 -05:00
{% extends "default" %}
2022-12-10 13:15:32 -05:00
2025-02-20 10:13:26 -05:00
{% block titlevariable %}
{% set title = "Archive" %}
{% endblock %}
2022-12-10 13:15:32 -05:00
2025-02-20 10:13:26 -05:00
{% block content -%}
2022-12-10 13:15:32 -05:00
2025-02-20 10:13:26 -05:00
<h1 class="headline">Archive</h1>
2022-12-10 13:15:32 -05:00
2025-02-20 10:13:26 -05:00
{% for year in years %}
<div class="archive-list">
{% for entry in posts_by_year[year] %}
<code>
<time datetime="{{ entry.date | iso_datetime }}">
{{ entry.date | iso_date }}
</time>
</code>
<div>
<a href="{{ entry.permalink }}">
{{ entry.title }}
</a>
</div>
{% endfor %}
</div>
{% if not loop.last %}
<hr>
{% endif %}
{% endfor %}
{%- endblock %}