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/_layouts/talk.html

16 lines
316 B
HTML
Raw Normal View History

2015-04-10 22:25:52 +00:00
{% extends 'default' %}
2015-06-18 16:57:07 +00:00
{% block body_classes %}page--talks page--talks__talk{% endblock %}
2015-04-10 22:25:52 +00:00
{% block content_wrapper %}
2015-06-14 02:27:41 +00:00
<h1>{{ page.title }}</h1>
2015-05-27 17:10:48 +00:00
2015-06-14 02:27:41 +00:00
{% block content %}{% endblock %}
2015-04-25 14:23:41 +00:00
2015-06-14 02:27:41 +00:00
{% if page.slides_embed %}
<div class="slides">
{{ page.slides_embed|raw }}
</div>
{% endif %}
2015-05-27 17:10:48 +00:00
{% endblock %}