webseite/layouts/shortcodes/profile.html
Jannik Menzel f9f7be56b2
All checks were successful
publish / publish (push) Successful in 27s
improved member bio handling
2025-06-21 19:52:29 +02:00

22 lines
No EOL
697 B
HTML

<div class="profile">
<div class="profile-image">
<img src="{{ .Get "image" | relURL }}" alt="{{ .Get "name" }}"/>
</div>
<div class="profile-content">
<h2>{{ .Get "name" }}</h2>
<p><strong>Studiengang:</strong> {{ .Get "studiengang" }}</p>
{{ with .Get "bio" }}
{{ $bios := site.Data.bios }}
{{ $lang := $.Site.Language.Lang }}
{{ $key := . }}
{{ with index $bios $key }}
{{ with index . $lang }}
<p>{{ . | markdownify }}</p>
{{ end }}
{{ end }}
{{ else }}
{{ .Inner | markdownify }}
{{ end }}
</div>
</div>