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' with {
|
|
|
|
avatar: site.avatar,
|
|
|
|
work: site.work,
|
|
|
|
} only %}
|
2021-06-30 07:00:00 +00:00
|
|
|
</div>
|
2021-06-30 07:00:00 +00:00
|
|
|
{% endblock %}
|