26 lines
No EOL
968 B
Text
26 lines
No EOL
968 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 class="link" style="--background: #000;--background-hover: #333;">
|
|
<a href="/tags" style="--text-color: #ddd;--text-color-hover: #fff;">Tags</a>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{{end}} |