20 lines
383 B
Twig
20 lines
383 B
Twig
{% extends "page.html.twig" %}
|
|
|
|
{% block content_wrapper %}
|
|
{{ 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 %}
|