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

23 lines
605 B
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">
<div class="markup spaced-y-4">
{% block content %}{% endblock %}
</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' %}
</div>
2017-07-11 00:08:32 +00:00
{% endblock %}