67 lines
1.8 KiB
Twig
67 lines
1.8 KiB
Twig
{% extends "layouts" ~ DIR ~ "default.twig" %}
|
|
|
|
{% block content %}
|
|
|
|
{# Months? (For yearly archives) #}
|
|
{% if months is not empty %}
|
|
<h2>{{ "Archive of %s" | translate | format(archive.when | time("Y")) }}</h2>
|
|
<ul>
|
|
{% for when, month in months %}
|
|
<li>
|
|
<h3>
|
|
<a href="{{ url('archive/%s/' | format(when | dateformat('Y/m'))) }}">
|
|
{{ when | time("F" | translate, "title") }}
|
|
</a>
|
|
</h3>
|
|
<ul>
|
|
{% for post in month %}
|
|
<li>
|
|
<a href="{{ post.url() }}" rel="bookmark" title="{{ 'Permanent link to “%s”' | translate | format(post.title() | striptags | fix(true)) }}">
|
|
{{ post.title() }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% if archive.prev is not empty or archive.next is not empty %}
|
|
<nav class="traversal">
|
|
{% if archive.prev is not empty %}
|
|
<a href="{{ url('archive/%s/' | format(archive.prev | dateformat('Y'))) }}">
|
|
{{ "Newer posts" | translate }}
|
|
</a>
|
|
{% endif %}
|
|
{% if archive.next is not empty %}
|
|
<a href="{{ url('archive/%s/' | format(archive.next | dateformat('Y'))) }}">
|
|
{{ "Older posts" | translate }}
|
|
</a>
|
|
{% endif %}
|
|
</nav>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{# Posts? (For daily/monthly archives) #}
|
|
{% if posts.paginated is not empty %}
|
|
<div class="filter">
|
|
{{ "Archive of %s" | translate | format(archive.when | time(archive.depth == "day" ? "d F Y" : "F Y")) }}
|
|
</div>
|
|
{% for post in posts.paginated %}
|
|
{% include(["feathers" ~ DIR ~ post.feather ~ ".twig", "feathers" ~ DIR ~ "missing.twig"]) %}
|
|
{% endfor %}
|
|
{% if posts.prev_page() or posts.next_page() %}
|
|
<!-- Navigation -->
|
|
<nav class="traversal">
|
|
{{- posts.prev_link("Newer posts" | translate) -}}
|
|
{{- posts.next_link("Older posts" | translate) -}}
|
|
</nav>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{# No results #}
|
|
{% if months is empty and posts.paginated is empty %}
|
|
<div role="status">{{ "There aren't any posts in the timeframe you specified." | translate }}</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|