diff options
Diffstat (limited to 'templates/page')
| -rw-r--r-- | templates/page/index.gohtml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/templates/page/index.gohtml b/templates/page/index.gohtml index dbc228a..390ca7b 100644 --- a/templates/page/index.gohtml +++ b/templates/page/index.gohtml @@ -4,9 +4,16 @@ <figure> <img src="{{ getStaticPath .Person.Image }}" alt="{{ .Person.Name }}'s image"> </figure> - <h2>{{ .Person.Name }}</h2> - <p>{{ .Person.Pronouns }}</p> + <div class="presentation__information"> + <h2>{{ .Person.Name }}</h2> + <p>{{ .Person.Pronouns }}</p> + </div> </div> <p class="description">{{ .Description }}</p> + <div class="links"> + <div class="link"><a href="">Link 1</a></div> + <div class="link"><a href="">Link 2</a></div> + <div class="link"><a href="">Link 3</a></div> + </div> </main> {{end}}
\ No newline at end of file |
