Update talk page layout

This commit is contained in:
Oliver Davies 2017-02-19 21:14:22 +00:00
parent 710d22254c
commit c873cf2321
34 changed files with 82 additions and 121 deletions

View file

@ -5,9 +5,30 @@
{% endblock %}
{% block content_wrapper %}
{% block content %}{% endblock %}
{% include 'talk/event' %}
{% 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 }}">
&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>
{% endblock %}