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

27 lines
800 B
Twig

<div class="overflow-auto">
<table class="talks-table w-full border border-grey-light">
<thead>
<tr>
<th class="w-1/4 p-2 text-left bg-white">Date</th>
{% if not talk_page %}
<th class="w-1/3 p-2 text-left bg-white">Talk</th>
{% endif %}
<th class="p-2 text-left bg-white">Event</th>
{% if not upcoming %}
<th class="p-2 text-left bg-white">Feedback</th>
{% endif %}
</tr>
</thead>
<tbody>
{% for row in talks %}
{% include "talks-table-row" with {
today: 'today'|date('Y-m-d')
} %}
{% endfor %}
</tbody>
</table>
</div>