This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_layouts/talk.html.twig

28 lines
948 B
Twig
Raw Normal View History

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-12 07:59:49 +00:00
At {{ page.event.name }} -
2015-09-09 21:23:36 +00:00
{% 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 %}
<hr>
2015-09-10 00:45:06 +00:00
{{ page.slides.embed|raw }}
{% endif %}
2015-10-05 23:31:09 +00:00
{% if page.vimeo.id %}
<iframe src="https://player.vimeo.com/video/{{ page.vimeo.id }}?title=0&portrait=0" width="{{ page.vimeo.width|default(500) }}" height="{{ page.vimeo.height|default(281) }}" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
{% endif %}
2015-09-09 07:02:35 +00:00
</main>
{% endblock content_wrapper %}