oliverdavies.uk/source/_layouts/podcast_episode.html.twig

55 lines
1.2 KiB
Twig

{% extends 'page' %}
{% block page_title %}
{% set episodeNumber = page.url|trim('/')|split('/')|last|split('-')|first %}
Episode {{ episodeNumber }}:
{{ page.topic }}
with {{ page.guests.0 }}
{% endblock %}
{% block head_title %}
<title>{{ block('page_title') }} | Beyond Blocks podcast | {{ site.name }}</title>
<meta property="og:title" content="{{ block('page_title') }} | Beyond Blocks podcast | {{ site.name }}" />
<meta property="twitter:title" content="{{ block('page_title') }} | Beyond Blocks podcast | {{ site.name }}" />
{% endblock %}
{% block content_wrapper %}
{% if page.transistor.id %}
<div>
<iframe
width="100%"
height="180"
frameborder="no"
scrolling="no"
seamless=""
src="https://share.transistor.fm/e/{{ page.transistor.id }}">
</iframe>
</div>
{% endif %}
{{ parent() }}
<div>
<h2>Links</h2>
<ul>
{% for link in page.links %}
<li>
<a href="{{ link.1 }}">{{ link.0 }}</a>
</li>
{% endfor %}
<ul>
</div>
{% if page.key_points %}
<h2>Key points</h2>
<ul>
{% for i in page.key_points %}
<li>{{ i }}</li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}