mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig.space.git
synced 2025-12-13 16:26:50 +00:00
28 lines
1.0 KiB
Plaintext
28 lines
1.0 KiB
Plaintext
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.'
|
|
|
|
block main
|
|
#team.wrap
|
|
section
|
|
h1= title
|
|
ul.members(data-shuffle)
|
|
each m in shuffle(team)
|
|
li.member
|
|
img(src=assetPath(m.image) alt=m.name loading="lazy")
|
|
header
|
|
h2=m.name
|
|
.links
|
|
if m.twitter
|
|
a(href=(m.twitter.startsWith('https://') ? m.twitter : `https://twitter.com/${m.twitter}`) target="_blank" title=`${m.name} on Twitter`)
|
|
+sprite("twitter")
|
|
if m.github
|
|
a(href=(m.github.startsWith('https://') ? m.github : `https://github.com/${m.github}`) target="_blank" title=`${m.name} on GitHub`)
|
|
+sprite("github")
|
|
if m.url
|
|
a(href=m.url target="_blank")
|
|
+sprite("url")
|
|
!=renderMarkdown(m.text)
|