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/_partials/talk/events.html.twig

23 lines
784 B
Twig

{% if page.events %}
<div>
<h2 class="mb-2">Presented at</h2>
<ul class="markup list-disc ml-5">
{% for event in page.events %}
<li>
{% set eventData = site.events[event.event] %}
{% if eventData.url %}
<a href="{{ eventData.url }}">{{ eventData.name }}</a>
{% else %}
{{ eventData.name }}
{% endif %}
{% if eventData.location %}
in {{ eventData.location }}
{% endif %}
<span class="text-gray-800">- {{ event.date|date('jS F Y') }}</span>
</li>
{% endfor %}
</ul>
</div>
{% endif %}