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

19 lines
339 B
Twig
Raw Normal View History

2021-06-30 07:00:00 +00:00
{% extends "page.html.twig" %}
{% block body %}
{{ parent() }}
{% include 'talk/slides' with {
speakerdeck: page.speakerdeck,
} only %}
{% include 'talk/video' with {
video: page.video,
} only %}
{% include 'talk/events' with {
events: page.events|reverse,
} only %}
{% endblock %}