Files
einundzwanzig.space/src/team.pug
2020-10-06 18:30:58 +02:00

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)