Experiment with a different presentation layout

This commit is contained in:
Oliver Davies 2025-03-21 00:26:41 +00:00
parent f9790b6080
commit 8b721e63fb
5 changed files with 26441 additions and 19 deletions

View file

@ -5,15 +5,27 @@
{% block content_wrapper %}
{{ parent() }}
{% include 'presentation/slides' with {
speakerdeck: page.speakerdeck,
} %}
{% if block('abstract') %}
<h2>Abstract</h2>
{% include 'presentation/video' with {
video: page.video,
} %}
{% block abstract %}{% endblock %}
{% endif %}
{% include 'presentation/events' with {
events: page.events,
} %}
{% if page.new_events %}
{% include 'presentation/events-new' with {
events: page.events,
} %}
{% else %}
{% include 'presentation/slides' with {
speakerdeck: page.speakerdeck,
} %}
{% include 'presentation/video' with {
video: page.video,
} %}
{% include 'presentation/events' with {
events: page.events,
} %}
{% endif %}
{% endblock %}