Use .twig instead of .html.twig

This commit is contained in:
Oliver Davies 2015-08-20 23:30:25 +01:00
parent 91e76cad66
commit 3465efe014
11 changed files with 2 additions and 2 deletions

View file

@ -1,25 +0,0 @@
{% extends "default.html.twig" %}
{% block body_classes 'page--talks page--talks__talk' %}
{% block content_wrapper %}
<main class="col-md-10">
<h1>{{ page.title }}</h1>
<p>At {{ page.location }} on {{ page.date|date(site.default_date_format) }}.</p>
{{ page.blocks.content|raw }}
{% if page.joindin %}
<p>
<a href="{{ page.joindin }}" class="btn btn-primary">Rate this talk</a>
</p>
{% endif %}
{% if page.slides_embed %}
<div class="slides">
{{ page.slides_embed|raw }}
</div>
{% endif %}
</main>
{% endblock content_wrapper %}