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.twig

26 lines
674 B
Twig
Raw Normal View History

2015-08-20 22:30:25 +00:00
{% extends "default.twig" %}
2015-08-09 21:31:53 +00:00
2015-08-09 21:32:10 +00:00
{% block body_classes 'page--talks page--talks__talk' %}
2015-08-09 21:31:53 +00:00
{% block content_wrapper %}
2015-08-21 07:26:30 +00:00
<main class="col-md-9">
2015-08-09 21:31:53 +00:00
<h1>{{ page.title }}</h1>
2015-08-09 22:02:59 +00:00
2015-08-09 22:04:17 +00:00
<p>At {{ page.location }} on {{ page.date|date(site.default_date_format) }}.</p>
2015-08-09 22:02:59 +00:00
{{ page.blocks.content|raw }}
2015-08-09 22:03:18 +00:00
2015-08-09 22:29:38 +00:00
{% if page.joindin %}
2015-08-09 22:03:51 +00:00
<p>
2015-08-09 22:29:38 +00:00
<a href="{{ page.joindin }}" class="btn btn-primary">Rate this talk</a>
2015-08-09 22:03:51 +00:00
</p>
{% endif %}
2015-08-09 22:12:29 +00:00
{% if page.slides_embed %}
<div class="slides">
{{ page.slides_embed|raw }}
</div>
2015-08-09 22:03:18 +00:00
{% endif %}
2015-08-09 21:31:53 +00:00
</main>
2015-08-20 22:08:02 +00:00
{% endblock content_wrapper %}