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

32 lines
1.1 KiB
Twig
Raw Normal View History

2018-10-05 23:23:35 +00:00
{% extends 'default' %}
2017-07-11 00:08:32 +00:00
2019-03-04 20:57:04 +00:00
{% 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 %}
2017-07-11 00:08:32 +00:00
{% block content_wrapper %}
2019-04-02 18:27:57 +00:00
<div class="spaced-y-8">
2020-01-29 16:04:05 +00:00
<div class="markup spaced-y-6">
2019-04-02 18:27:57 +00:00
{% block content %}{% endblock %}
2020-01-29 16:04:05 +00:00
<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>
2019-04-02 18:27:57 +00:00
</div>
2017-07-11 00:08:32 +00:00
2019-04-02 18:27:57 +00:00
{% include 'talk/slides' %}
{% include 'talk/video' %}
{% include 'talk/tweets' %}
{% include 'talk/events' with { events: get_events_for_talk(page, site.events) } only %}
2019-04-02 18:27:57 +00:00
</div>
2017-07-11 00:08:32 +00:00
{% endblock %}