Move all files to 2019/

This commit is contained in:
Oliver Davies 2025-09-29 22:25:20 +01:00
parent f59a1843de
commit 0b536af737
94 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<section id="schedule" class="tw-bg-purple-800 tw-text-white tw-py-16">
<div class="tw-max-w-xl tw-mx-auto tw-px-4 tw-text-center">
<h2 class="tw-text-3xl md:tw-text-4xl">The Schedule</h2>
<ul class="tw-list-reset tw-overflow-hidden">
{% for slot in slots %}
{% set session = sessionInSlot(slot.id, sessions) %}
<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' }}">
<span class="tw-flex tw-items-center tw-justify-between tw--mx-6">
<span class="tw-px-6 tw-text-gray-200 tw-flex-1 tw-text-left">
<span class="tw-block">{{ session.title|default(slot.label)|default('TBA') }}</span>
{% if session.speakers %}
<span class="tw-block tw-mt-1">{{ session.speakers|join(', ') }}</span>
{% endif %}
</span>
<span class="tw-px-6 tw-font-semibold">{{ slot.time }}</span>
</span>
</li>
{% endfor %}
</ul>
</div>
</section>