mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig.space.git
synced 2025-12-14 00:36:48 +00:00
Update team data structure
This commit is contained in:
@@ -32,7 +32,7 @@ block main
|
||||
ul.partcipants
|
||||
for participant in episode.participants
|
||||
li
|
||||
if participants[participant]
|
||||
if team[participant.toLowerCase()]
|
||||
a(href=`/team/#${participant}`)= participant
|
||||
else
|
||||
= participant
|
||||
|
||||
@@ -3,8 +3,9 @@ extends /template.pug
|
||||
block vars
|
||||
- const title = 'Team'
|
||||
- const description = 'Einmal die Woche sitzen diese Jungs zusammen und besprechen die aktuellen Geschehnisse in Bitcoin und der Welt.'
|
||||
- const core = team.slice(0, 5)
|
||||
- const crew = team.slice(5)
|
||||
- const members = Object.values(team)
|
||||
- const core = members.slice(0, 5)
|
||||
- const crew = members.slice(5)
|
||||
|
||||
block main
|
||||
#team.wrap
|
||||
|
||||
Reference in New Issue
Block a user