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

29 lines
652 B
Twig

<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
<th>Talk</th>
<th>Event</th>
</tr>
</thead>
<tbody>
{% for event in events %}
<tr>
<td>
{{ event.date|date(site.default_date_format) }}
</td>
<td>
<a href="{{ event.talk.url }}">
{{ event.talk.title }}
</a>
</td>
<td>
{{ event.title }}
</td>
</tr>
{% endfor %}
</tbody>
</table>