lishwist/templates/foreign_wishlist.gotmpl

17 lines
209 B
Go Template

{{define "body"}}
<h1>Lishwist</h1>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
</ul>
</nav>
<h2>{{.Username}}'s list</h2>
<ul>
{{range .Gifts}}
<li>{{.Name}}</li>
{{end}}
</ul>
{{end}}