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.twig

31 lines
749 B
Twig
Raw Normal View History

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