iFSR-Website/layouts/shortcodes/profile.html
2025-05-19 17:45:22 +02:00

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 }}