2025-01-01 18:31:30 -05:00
|
|
|
{% extends "default" %}
|
2024-12-31 14:29:11 -05:00
|
|
|
|
2025-01-01 18:31:30 -05:00
|
|
|
{% block titlevariable %}
|
|
|
|
{% set title = "Archive" %}
|
|
|
|
{% endblock %}
|
2024-12-31 14:29:11 -05:00
|
|
|
|
|
|
|
{% block content -%}
|
|
|
|
|
2025-01-01 18:31:30 -05:00
|
|
|
{% for year in years %}
|
2025-02-11 20:45:53 -05:00
|
|
|
<ul class="archive-list">
|
2025-01-01 18:31:30 -05:00
|
|
|
{% for entry in posts_by_year[year] %}
|
2024-12-31 14:29:11 -05:00
|
|
|
<li>
|
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>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{%- endblock %}
|