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

26 lines
602 B
Twig
Raw Normal View History

2021-06-30 07:00:00 +00:00
{% extends 'base' %}
2021-06-30 07:00:00 +00:00
2021-06-30 07:00:00 +00:00
{% block content_wrapper %}
2021-06-30 07:00:00 +00:00
<div class="space-y-10">
<div class="space-y-6">
<div class="markdown">
{{ parent() }}
</div>
2021-06-30 07:00:00 +00:00
2021-06-30 07:00:00 +00:00
{% include 'talk/slides' with {
speakerdeck: page.speakerdeck,
} only %}
2021-06-30 07:00:00 +00:00
2021-06-30 07:00:00 +00:00
{% include 'talk/video' with {
video: page.video,
} only %}
2021-06-30 07:00:00 +00:00
2021-06-30 07:00:00 +00:00
{% include 'talk/events' with {
events: page.events|reverse,
} only %}
</div>
2021-06-30 07:00:00 +00:00
2021-06-30 07:00:00 +00:00
{% include 'about-author' %}
</div>
2021-06-30 07:00:00 +00:00
{% endblock %}