Moved things

This commit is contained in:
Oliver Davies 2015-09-13 10:44:08 +01:00
parent dad3da5ce7
commit c37df83df7
29 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{% extends 'default.html.twig' %}
{% block content_wrapper %}
<main class="col-md-9">
<h1>{{ page.title }}</h1>
<p>
At {{ page.location }} -
{% 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 %}