11 lines
No EOL
415 B
HTML
11 lines
No EOL
415 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" }}<br>
|
|
{{ with .Get "email" }}📧 <a href="mailto:{{ . }}">{{ . }}</a><br>{{ end }}</p>
|
|
</div>
|
|
</div>
|
|
{{ .Inner | markdownify }} |