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

46 lines
1.1 KiB
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>
2015-12-30 23:53:01 +00:00
{% if page.blocks.abstract %}
<h2>Abstract</h2>
2015-09-09 07:02:35 +00:00
2015-12-30 23:53:01 +00:00
{{ page.blocks.abstract|raw }}
{% endif %}
<h2>Details</h2>
<ul>
<li>Event:
{% if page.event.website %}
<a href="{{ page.event.website }}">{{ page.event.name }}</a>
{% else %}
{{ page.event.name }}
{% endif %}
</li>
<li>Date: {{ page.date|date(site.default_date_format) }}</li>
<li>Location: {{ page.event.location }}</li>
</ul>
2015-09-10 00:45:06 +00:00
2015-12-29 00:39:54 +00:00
{% if page.blocks.slides %}
2015-10-26 23:48:32 +00:00
<h2>Slides</h2>
2015-12-29 00:39:54 +00:00
{{ page.blocks.slides|raw }}
2015-09-10 00:45:06 +00:00
{% endif %}
2015-10-05 23:31:09 +00:00
2015-12-29 00:39:54 +00:00
{% if page.blocks.video %}
<h2>Video</h2>
{{ page.blocks.video|raw }}
2015-10-05 23:31:09 +00:00
{% endif %}
2015-12-30 23:53:01 +00:00
{% if page.blocks.feedback %}
<h2>Feedback</h2>
{{ page.blocks.feedback|raw }}
{% endif %}
2015-09-09 07:02:35 +00:00
</main>
2015-12-29 00:39:54 +00:00
{% endblock %}