oliverdavies.uk/source/_layouts/talk.html.twig

31 lines
749 B
Twig
Raw Normal View History

2015-09-09 08:02:35 +01:00
{% extends 'default.html.twig' %}
{% block content_wrapper %}
<main class="col-md-9">
<h1>{{ page.title }}</h1>
<p>
2015-09-12 08:59:49 +01:00
At {{ page.event.name }} -
2015-09-09 22:23:36 +01:00
{% spaceless %}{% if page.fuzzy_date %}
2015-09-09 08:02:35 +01:00
{{ page.date|date(site.fuzzy_date_format) }}
{% else %}
{{ page.date|date(site.default_date_format) }}
2015-09-09 22:23:36 +01:00
{% endif %}{% endspaceless %}.
2015-09-09 08:02:35 +01:00
</p>
{{ page.blocks.content|raw }}
2015-09-10 01:45:06 +01:00
2015-12-29 00:39:54 +00:00
{% if page.blocks.slides %}
2015-10-26 23:48:32 +00:00
<h2>Slides</h2>
2015-12-29 00:39:54 +00:00
{{ page.blocks.slides|raw }}
2015-09-10 01:45:06 +01:00
{% endif %}
2015-10-06 00:31:09 +01:00
2015-12-29 00:39:54 +00:00
{% if page.blocks.video %}
<h2>Video</h2>
{{ page.blocks.video|raw }}
2015-10-06 00:31:09 +01:00
{% endif %}
2015-09-09 08:02:35 +01:00
</main>
2015-12-29 00:39:54 +00:00
{% endblock %}