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

18 lines
290 B
Twig
Raw Normal View History

2024-01-03 20:00:00 +00:00
{% extends 'page' %}
{% block content_wrapper %}
{{ parent() }}
2024-01-11 19:56:42 +00:00
{% include 'talk/slides' with {
speakerdeck: page.speakerdeck,
} %}
2024-01-03 20:00:00 +00:00
2024-01-11 19:56:42 +00:00
{% include 'talk/video' with {
video: page.video,
} %}
2024-01-03 20:00:00 +00:00
2024-01-11 19:56:42 +00:00
{% include 'talk/events' with {
events: page.events,
} %}
2024-01-03 20:00:00 +00:00
{% endblock %}