34 lines
1.0 KiB
Go Template
34 lines
1.0 KiB
Go Template
<!doctype html>
|
|
<html>
|
|
<head>
|
|
{{template "head"}}
|
|
</head>
|
|
|
|
<body>
|
|
<div style="height: 100svh;" class="d-flex flex-column">
|
|
{{template "navbar" .Navbar}}
|
|
<div class="overflow-y-scroll flex-grow-1">
|
|
<div class="container py-5">
|
|
<section class="card">
|
|
<div class="card-body">
|
|
<h2>{{.Username}}'s list</h2>
|
|
{{if eq .GiftCount 0}}
|
|
<p>{{.Username}} hasn't written any gift ideas!</p>
|
|
<p>{{template "login_prompt"}} to add some! :^)</p>
|
|
{{else}}
|
|
{{if eq .GiftCount 1}}
|
|
<p>{{.Username}} has only written one gift idea.</p>
|
|
<p>{{template "login_prompt"}} to claim it, or add more! :^)</p>
|
|
{{else}}
|
|
<p>{{.Username}} has written {{.GiftCount}} gift ideas.</p>
|
|
<p>{{template "login_prompt"}} to claim an idea, or add more! :^)</p>
|
|
{{end}}
|
|
{{end}}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|