This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_includes/previous-talks.html.twig

24 lines
435 B
Twig

{% set year = 0 %}
{% for talk in data.talks if date(talk.date) < date('today') %}
{% if loop.first %}
<h2>Previous Talks</h2>
{% endif %}
{% if talk.date|date('Y') != year %}
{% set year = talk.date|date('Y') %}
</ul>
<h3>{{ year }}</h3>
<ul>
{% endif %}
<li>
{{- include('talk-listing-item') -}}
</li>
{% endfor %}
{% if year != 0 %}
</ul>
{% endif %}