mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig.space.git
synced 2025-12-13 16:26:50 +00:00
26 lines
717 B
Plaintext
26 lines
717 B
Plaintext
extends /template.pug
|
|
|
|
block vars
|
|
- const current = episodes.shift()
|
|
- const title = categoryName
|
|
- const description = 'Wir bringen dir die Bitcoin-News der Woche, sowie zusätzlich Interviews und die besten Artikel als Lesestunde. Außerdem erfährst du in "Der Weg" wie andere Leute zu Bitcoin gekommen sind.'
|
|
- const cardImage = `/img/cover/${category}.png`
|
|
|
|
block main
|
|
#podcast.podcast-category.wrap
|
|
section
|
|
p= description
|
|
+categories(categoryName)
|
|
|
|
h1= categoryName
|
|
h2 Aktuelle Episode
|
|
.latest
|
|
+episodePlayer(current)
|
|
|
|
if episodes.length
|
|
section
|
|
h2 Weitere Episoden
|
|
.episodes
|
|
each e in episodes
|
|
+episodeItem(e)
|