oliverdavies.uk/source/_layouts/presentation.html.twig

32 lines
663 B
Twig
Raw Normal View History

2024-01-03 20:00:00 +00:00
{% extends 'page' %}
{% block meta_description %}{{ page.title }} presented by Oliver Davies{% endblock %}
2024-01-03 20:00:00 +00:00
{% block content_wrapper %}
{{ parent() }}
{% if block('abstract') %}
<h2>Abstract</h2>
2024-01-03 20:00:00 +00:00
{% block abstract %}{% endblock %}
{% endif %}
2024-01-03 20:00:00 +00:00
{% 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 %}
2024-01-03 20:00:00 +00:00
{% endblock %}