Re-add talk templates and partials
This commit is contained in:
parent
d31410792b
commit
814dd9d97e
8 changed files with 112 additions and 1 deletions
|
@ -1 +1,7 @@
|
|||
{% extends "default" %}
|
||||
|
||||
{% block body %}
|
||||
<h1>{{ page.title }}</h1>
|
||||
|
||||
{{ parent() }}
|
||||
{% endblock %}
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue