This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_views/talk.twig

35 lines
882 B
Twig
Raw Normal View History

2016-05-27 19:00:54 +00:00
{% extends 'default' %}
2015-09-09 07:02:35 +00:00
2016-05-13 23:55:00 +00:00
{% block content_top %}
<h1>{{ page.title }}</h1>
{% endblock %}
2015-09-09 07:02:35 +00:00
2016-05-13 23:55:00 +00:00
{% block content_wrapper %}
2017-02-19 21:14:22 +00:00
{% include 'talk/location' %}
2016-09-29 11:43:17 +00:00
{% include 'talk/slides' %}
{% include 'talk/video' %}
2017-02-19 21:14:22 +00:00
<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 }}">
&laquo; {{ 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 }} &raquo;
</a>
</div>
{% endif %}
</div>
2015-12-29 00:39:54 +00:00
{% endblock %}