22 lines
No EOL
697 B
HTML
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> |