---
layout: default
title: Podcasts
podcasts:
talking_drupal:
name: Talking Drupal
episodes:
- title: 'Episode #175 - Automated Testing'
description: I joined the Talking Drupal team to discuss automated testing.
podcast: talking_drupal
date: 2018-09-05
url: http://talkingdrupal.com/175
<!-- <header class="mb-6">
<p class="text-lg">
I’m an occasional guest on podcasts such as Talking Drupal.
</p>
</header> -->
<div class="spaced-y-8">
{% for episode in page.episodes|reverse %}
{% set podcast = page.podcasts[episode.podcast] %}
<article>
<h2 class="text-lg">{{ podcast.name }}: {{ episode.title }}</h2>
<time class="text-sm text-grey-darker block mt-px mb-2" datetime="{{ episode.date|date('Y-m-d') }}">
{{ episode.date|date('jS F Y') }}
</time>
<p>{{ episode.description }}</p>
<a href="{{ episode.url }}" class="inline-block mt-2 text-sm text-grey-dark hover:text-grey-darker focus:text-grey-darker">
{{ episode.video ? 'Watch' : 'Listen to' }} this
<span class="visuallyhidden">{{ podcast.name }}</span>
episode →
</a>
</article>
{% endfor %}
</div>