oliverdavies.uk/source/_partials/talks-table.twig

33 lines
917 B
Twig
Raw Normal View History

2016-10-27 06:08:45 +00:00
<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
2017-03-06 08:16:34 +00:00
{% if show_talk %}<th>Talk</th>{% endif %}
2016-10-27 06:08:45 +00:00
<th>Event</th>
</tr>
</thead>
<tbody>
2017-03-06 08:16:34 +00:00
{% for event in events|sortbyfield('date')|reverse %}
2016-10-27 06:08:45 +00:00
<tr>
<td>
2017-03-06 08:16:34 +00:00
{{ event.date|date('j F Y') }}
2016-10-27 06:08:45 +00:00
</td>
2017-03-06 08:16:34 +00:00
{% if show_talk %}
<td>
<a href="{{ event.talk.url }}">
{{ event.talk.title }}
</a>
</td>
{% endif %}
2016-10-27 06:08:45 +00:00
2017-03-06 00:25:37 +00:00
<td>
2017-03-06 08:28:38 +00:00
{% if event.website %}<a href="{{ event.website }}">{% endif %}
2017-03-06 00:25:37 +00:00
{{ event.title }}
2017-03-06 08:28:38 +00:00
{% if event.website %}</a>{% endif %}
2017-03-06 00:25:37 +00:00
</td>
2016-10-27 06:08:45 +00:00
</tr>
{% endfor %}
</tbody>
</table>