now/templates/page/index.gohtml
2024-11-18 19:31:49 +01:00

26 lines
No EOL
891 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>
<nav class="links" style="{{ .Color.Button.GetBackground }}{{ .Color.Button.GetTextColor }}">
{{ range $link := .Links }}
<div class="link">
<a href="{{ .Link }}">{{ .Content }}</a>
</div>
{{ end }}
<div class="link">
<a href="/tags">Tags</a>
</div>
</nav>
</main>
{{end}}