aboutsummaryrefslogtreecommitdiff
path: root/templates/page/index.gohtml
blob: dbc228a143298d4566d31cefa98d0d233be8ee41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{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}}