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-09 21:23:36 +00:00
|
|
|
At {{ page.location }} -
|
|
|
|
{% 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
|
|
|
|
|
|
|
{% if page.slides.embed %}
|
|
|
|
{{ page.slides.embed|raw }}
|
|
|
|
{% endif %}
|
2015-09-09 07:02:35 +00:00
|
|
|
</main>
|
|
|
|
{% endblock content_wrapper %}
|