31 lines
749 B
Twig
31 lines
749 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.blocks.slides %}
|
|
<h2>Slides</h2>
|
|
|
|
{{ page.blocks.slides|raw }}
|
|
{% endif %}
|
|
|
|
{% if page.blocks.video %}
|
|
<h2>Video</h2>
|
|
|
|
{{ page.blocks.video|raw }}
|
|
{% endif %}
|
|
</main>
|
|
{% endblock %}
|