diff options
Diffstat (limited to 'templates/page/index.gohtml')
| -rw-r--r-- | templates/page/index.gohtml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/page/index.gohtml b/templates/page/index.gohtml new file mode 100644 index 0000000..dbc228a --- /dev/null +++ b/templates/page/index.gohtml @@ -0,0 +1,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}}
\ No newline at end of file |
