Re-add talk templates and partials

This commit is contained in:
Oliver Davies 2021-06-30 08:00:00 +01:00
parent d31410792b
commit 814dd9d97e
8 changed files with 112 additions and 1 deletions

View file

@ -1 +1,7 @@
{% extends "default" %}
{% block body %}
<h1>{{ page.title }}</h1>
{{ parent() }}
{% endblock %}

View file

@ -1 +1,18 @@
{% extends "default" %}
{% 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 %}