now/templates/page/index.gohtml
2024-11-09 21:52:13 +01:00

12 lines
No EOL
372 B
Text

{{define "body"}}
<main>
<div class="presentation">
<figure>
<img src="{{ getStaticPath .Person.Image }}" alt="{{ .Person.Name }}'s image">
</figure>
<h2>{{ .Person.Name }}</h2>
<p>{{ .Person.Pronouns }}</p>
</div>
<p class="description">{{ .Description }}</p>
</main>
{{end}}