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
Raw Normal View History

2016-10-27 06:08:45 +00:00
<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
<th>Talk</th>
<th>Event</th>
</tr>
</thead>
<tbody>
2017-03-06 00:25:37 +00:00
{% for event in events %}
2016-10-27 06:08:45 +00:00
<tr>
<td>
2017-03-06 00:25:37 +00:00
{{ event.date|date(site.default_date_format) }}
2016-10-27 06:08:45 +00:00
</td>
<td>
2017-03-06 00:25:37 +00:00
<a href="{{ event.talk.url }}">
{{ event.talk.title }}
2016-10-27 06:08:45 +00:00
</a>
</td>
2017-03-06 00:25:37 +00:00
<td>
{{ event.title }}
</td>
2016-10-27 06:08:45 +00:00
</tr>
{% endfor %}
</tbody>
</table>