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

23 lines
610 B
Twig

{% extends 'default.html.twig' %}
{% block content_wrapper %}
<main class="col-md-9">
<h1>{{ page.title }}</h1>
<p>
At {{ page.event.name }} -
{% spaceless %}{% if page.fuzzy_date %}
{{ page.date|date(site.fuzzy_date_format) }}
{% else %}
{{ page.date|date(site.default_date_format) }}
{% endif %}{% endspaceless %}.
</p>
{{ page.blocks.content|raw }}
{% if page.slides.embed %}
{{ page.slides.embed|raw }}
{% endif %}
</main>
{% endblock content_wrapper %}