diff --git a/source/_layouts/default.html.twig b/source/_layouts/default.html.twig index 9d0395e..8b34504 100644 --- a/source/_layouts/default.html.twig +++ b/source/_layouts/default.html.twig @@ -2,6 +2,8 @@ {% block body %}
- {% block content %}{% endblock %} + {% block content_wrapper %} + {% block content %}{% endblock %} + {% endblock %}
{% endblock %} diff --git a/source/_layouts/speaker.html.twig b/source/_layouts/speaker.html.twig index a943ec6..fe85b6f 100644 --- a/source/_layouts/speaker.html.twig +++ b/source/_layouts/speaker.html.twig @@ -1 +1,17 @@ {% extends 'default' %} + +{% block content_wrapper %} +

{{ page.name }}

+ +
+ Photo of {{ page.name }} +
+ +
+ {{ block('content') }} +
+{% endblock %}