dcbristol-2019-static/source/_includes/schedule.html.twig

17 lines
763 B
Twig
Raw Normal View History

2019-05-21 16:14:40 +00:00
<section id="schedule" class="tw-bg-purple-800 tw-text-white tw-py-16">
2019-05-21 16:11:15 +00:00
<div class="tw-max-w-xl tw-mx-auto tw-px-4 tw-text-center">
<h2>The Schedule</h2>
<ul class="tw-list-reset tw-overflow-hidden">
{% for slot in slots %}
2019-05-21 16:25:15 +00:00
<li class="tw-pt-4 lg:tw-pt-6 {{ loop.last ?: 'tw-pb-4 lg:tw-pb-6 tw-border-solid tw-border-0 tw-border-b tw-border-purple-400' }}">
2019-05-21 16:24:10 +00:00
<span class="tw-flex tw-justify-between tw--mx-6">
<span class="tw-px-6 tw-text-gray-200">{{ slot.speaker }}</span>
<span class="tw-px-6 tw-font-semibold">{{ slot.time }}</span>
</span>
2019-05-21 16:11:15 +00:00
</li>
{% endfor %}
</ul>
</div>
</section>