now/templates/page/index.gohtml
2024-11-10 00:43:24 +01:00

21 lines
No EOL
747 B
Text

{{define "body"}}
<main style="{{ .GetBackground }}">
<div class="presentation">
<figure>
<img src="{{ getStaticPath .Person.Image }}" alt="{{ .Person.Name }}'s image">
</figure>
<div class="presentation__information">
<h2>{{ .Person.Name }}</h2>
<p>{{ .Person.Pronouns }}</p>
</div>
</div>
<p class="description">{{ .Description }}</p>
<div class="links">
{{ range $link := .Links }}
<div class="link" style="{{ .GetBackground }}">
<a href="{{ .Link }}" style="{{ .GetLinkColor }}">{{ .Content }}</a>
</div>
{{end}}
</div>
</main>
{{end}}