Show second guest name
If a podcast episode has two guests, show both guest names.
This commit is contained in:
parent
9fe5a268bb
commit
f5f13d6856
2 changed files with 3 additions and 7 deletions
|
@ -18,11 +18,7 @@ Guests include people like [Matt Glaman](/podcast/1-retrofit), [Eirik Morland](/
|
|||
{% for episode in data.podcast_episodes|reverse %}
|
||||
{% set episodeNumber = episode.url|trim('/')|split('/')|last|split('-')|first %}
|
||||
|
||||
<h3>
|
||||
Episode {{ episodeNumber }}:
|
||||
{{ episode.topic }}
|
||||
with {{ episode.guests.0 }}
|
||||
</h3>
|
||||
<h3>Episode {{ episodeNumber }}: {{ episode.topic }} with {{ episode.guests|join(' and ') }}</h3>
|
||||
|
||||
<time datetime="{{ episode.date|date('Y-m-d') }}">{{ episode.date|date('F jS, Y') }}</time>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue