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/podcasts.html.twig

47 lines
1.5 KiB
Twig
Raw Normal View History

2019-03-08 10:11:46 +00:00
---
layout: default
title: Podcasts
2019-03-08 13:48:58 +00:00
podcasts:
talking_drupal:
name: Talking Drupal
2019-03-08 10:11:46 +00:00
episodes:
- title: 'Episode #175 - Automated Testing'
description: I joined the Talking Drupal team to discuss automated testing.
2019-03-08 13:48:58 +00:00
podcast: talking_drupal
2019-03-08 10:11:46 +00:00
date: 2018-09-05
url: http://talkingdrupal.com/175
2019-03-20 22:35:57 +00:00
- title: 'Episode #204 - A Few Things'
description: I joined the Talking Drupal team again, where we discussed Drupal updates, conferences and more.
podcast: talking_drupal
2019-03-25 11:11:47 +00:00
date: 2019-03-25
2019-03-20 22:35:57 +00:00
url: http://talkingdrupal.com/204
2019-03-08 10:11:46 +00:00
---
<!-- <header class="mb-6">
<p class="text-lg">
Im an occasional guest on podcasts such as Talking Drupal.
</p>
</header> -->
2019-03-20 22:36:04 +00:00
<div class="spaced-y-10">
2019-03-08 10:11:46 +00:00
{% for episode in page.episodes|reverse %}
2019-03-08 13:48:58 +00:00
{% set podcast = page.podcasts[episode.podcast] %}
2019-03-08 10:11:46 +00:00
<article>
2019-03-08 14:02:22 +00:00
<h2 class="text-lg">{{ podcast.name }}: {{ episode.title }}</h2>
2019-03-08 10:11:46 +00:00
2019-03-21 09:38:09 +00:00
<time class="text-sm text-gray-800 block mt-px mb-2" datetime="{{ episode.date|date('Y-m-d') }}">
2019-03-08 10:11:46 +00:00
{{ episode.date|date('jS F Y') }}
</time>
<p>{{ episode.description }}</p>
2019-03-21 09:38:09 +00:00
<a href="{{ episode.url }}" class="inline-block mt-2 text-sm text-gray-600 hover:text-gray-800 focus:text-gray-800">
{{ episode.video ? 'Watch' : 'Listen to' }} this
2019-03-08 10:11:46 +00:00
<span class="visuallyhidden">{{ podcast.name }}</span>
episode &rarr;
</a>
</article>
{% endfor %}
</div>