2024-01-03 20:00:00 +00:00
|
|
|
---
|
|
|
|
title: The Beyond Blocks podcast
|
2024-09-12 16:36:55 +00:00
|
|
|
meta:
|
|
|
|
description: A weekly podcast about Drupal, PHP open-source and software development.
|
2024-01-03 20:00:00 +00:00
|
|
|
use:
|
2024-02-07 20:01:19 +00:00
|
|
|
- podcast_episodes
|
2024-01-03 20:00:00 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
{% block content_bottom %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-09-12 16:36:38 +00:00
|
|
|
A weekly podcast about Drupal, PHP, open-source, and related software development topics.
|
2024-01-03 20:00:00 +00:00
|
|
|
|
2024-02-28 00:40:07 +00:00
|
|
|
Subscribe at <a href="{{ site.transistor.feed.url }}">{{ site.transistor.feed.url }}</a>.
|
2024-01-03 20:00:00 +00:00
|
|
|
|
|
|
|
## Episodes
|
|
|
|
|
2024-01-03 20:00:00 +00:00
|
|
|
{% for episode in data.podcast_episodes|reverse %}
|
2024-01-03 20:00:00 +00:00
|
|
|
{% set episodeNumber = episode.url|trim('/')|split('/')|last|split('-')|first %}
|
|
|
|
|
|
|
|
<h3>
|
|
|
|
Episode {{ episodeNumber }}:
|
|
|
|
{{ episode.topic }}
|
|
|
|
with {{ episode.guests.0 }}
|
|
|
|
</h3>
|
|
|
|
|
|
|
|
<time datetime="{{ episode.date|date('Y-m-d') }}">{{ episode.date|date('F jS, Y') }}</time>
|
|
|
|
|
|
|
|
{{ episode.blocks.content|markdown }}
|
|
|
|
|
2024-09-02 20:53:50 +00:00
|
|
|
<a href="{{ episode.url|trim('/', 'right') }}" aria-label="Listen to episode {{ episodeNumber }}">
|
2024-01-03 20:00:00 +00:00
|
|
|
Listen now
|
|
|
|
→
|
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|