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/talks-table.twig

33 lines
917 B
Twig

<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
{% if show_talk %}<th>Talk</th>{% endif %}
<th>Event</th>
</tr>
</thead>
<tbody>
{% for event in events|sortbyfield('date')|reverse %}
<tr>
<td>
{{ event.date|date('j F Y') }}
</td>
{% if show_talk %}
<td>
<a href="{{ event.talk.url }}">
{{ event.talk.title }}
</a>
</td>
{% endif %}
<td>
{% if event.website %}<a href="{{ event.website }}">{% endif %}
{{ event.title }}
{% if event.website %}</a>{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>