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

{% extends "default.twig" %}
{% block body_classes 'page--talks page--talks__talk' %}
{% block content_wrapper %}
<main class="col-md-9">
<h1>{{ page.title }}</h1>
<p>At {{ page.location }} on {{ page.date|date(site.default_date_format) }}.</p>
{{ page.blocks.content|raw }}
{% if page.joindin %}
<p>
<a href="{{ page.joindin }}" class="btn btn-primary">Rate this talk</a>
</p>
{% endif %}
{% if page.slides_embed %}
<div class="slides">
{{ page.slides_embed|raw }}
</div>
{% endif %}
</main>
{% endblock content_wrapper %}