website/layouts/shortcodes/members.html

10 lines
475 B
HTML
Raw Normal View History

2024-06-06 12:11:20 +02:00
<div class="team-mosaic">
{{ range .Site.Data.members.members }}
<div class="team-item">
2024-06-11 12:24:20 +02:00
<div class="team-item-image"><img {{if .imgnoncover }}id="noncover"{{end}} src="/profiles/{{ .img }}{{ if .imgpng }}.png{{ else }}.jpg{{ end }}" alt="avatar"></div>
2024-06-06 12:11:20 +02:00
<p class="team-item-title">{{ .name }}</p>
2024-06-11 12:24:20 +02:00
<p class="team-item-description">{{ if (and .descriptionen (eq .Lang "en")) }}{{ .posten }}{{ else }}{{ .post }}{{ end }}</p>
2024-06-06 12:11:20 +02:00
</div>
{{ end }}
</div>