From 830fa88b78fbff1a1c46f9b5b4eee8eb2c6659c1 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 9 Sep 2015 08:02:35 +0100 Subject: [PATCH] Added talk.html.twig --- .../oliverdavies/_layouts/talk.html.twig | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 source/themes/opdavies/oliverdavies/_layouts/talk.html.twig diff --git a/source/themes/opdavies/oliverdavies/_layouts/talk.html.twig b/source/themes/opdavies/oliverdavies/_layouts/talk.html.twig new file mode 100644 index 00000000..ecabd8a1 --- /dev/null +++ b/source/themes/opdavies/oliverdavies/_layouts/talk.html.twig @@ -0,0 +1,20 @@ +{% extends 'default.html.twig' %} + +{% block body_classes 'page--talks page--talks__talk' %} + +{% block content_wrapper %} +
+

{{ page.title }}

+ +

+ At {{ page.location }}, + {% if page.fuzzy_date %} + {{ page.date|date(site.fuzzy_date_format) }} + {% else %} + {{ page.date|date(site.default_date_format) }} + {% endif %}. +

+ + {{ page.blocks.content|raw }} +
+{% endblock content_wrapper %}