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
2020-01-29 21:04:34 +00:00

32 lines
1.1 KiB
Twig
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'default' %}
{% block metas %}
{{ parent() }}
<meta name="og:description" content="{{ page.description }}">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:description" content="{{ page.description }}">
{% endblock %}
{% block content_wrapper %}
<div class="spaced-y-8">
<div class="markup spaced-y-6">
{% block content %}{% endblock %}
<section>
<h2 class="sr-only">Give me feedback</h2>
<p>
<strong>Want to give me feedback for this talk?</strong>
Im <a href="{{ site.twitter.url }}" title="Leave me feedback on Twitter">@{{ site.twitter.user }}</a> on Twitter or <a href="/contact">send me an email</a>.
</p>
</section>
</div>
{% include 'talk/slides' %}
{% include 'talk/video' %}
{% include 'talk/tweets' %}
{% include 'talk/events' with { events: get_events_for_talk(page, site.events) } only %}
</div>
{% endblock %}