35 lines
882 B
Twig
35 lines
882 B
Twig
{% extends 'default' %}
|
|
|
|
{% block content_top %}
|
|
<h1>{{ page.title }}</h1>
|
|
{% endblock %}
|
|
|
|
{% block content_wrapper %}
|
|
{% include 'talk/location' %}
|
|
{% include 'talk/slides' %}
|
|
{% include 'talk/video' %}
|
|
|
|
<div class="content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
<div class="talk-pager is-flex">
|
|
{% if page.next_talk %}
|
|
<div class="is-half">
|
|
<a href="{{ page.next_talk.url }}">
|
|
« {{ page.next_talk.title }}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if page.previous_talk %}
|
|
<div class="is-half text-right">
|
|
<a href="{{ page.previous_talk.url }}" class="is-half text-right">
|
|
{{ page.previous_talk.title }} »
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock %}
|