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

20 lines
372 B
Twig

{% 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 %}
{% include 'about-author' %}
{% endblock %}