26 lines
778 B
Twig
26 lines
778 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>
|
|
{% set today = 'today'|date('Y-m-d') %}
|
|
{% for row in talks %}
|
|
{% include "talks-table-row" %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|