This repository has been archived on 2025-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
trantor/templates/list.html
Las Zenow 6a3da59c75 Port the web to bootstrap5
So it is responsive in phones.
2021-05-01 11:08:35 +00:00

27 lines
637 B
HTML

{{template "header.html" .S}}
<div class="row">
<h4 class="col-sm-10">{{.List.Title}} <a href="/list/{{.List.ListID}}?fmt=rss"><img src="/img/feed.png"/></a></h4>
<p class="col-sm-2 text-end">
{{if eq .S.User .List.User.Username}}
<a href="/list/{{.List.ListID}}/edit" class="btn btn-primary">
<svg class="bi" width="1em" height="1em" fill="currentColor">
<use xlink:href="/img/bootstrap-icons.svg#pencil"/>
</svg>
Edit
</a>
{{else}}
By {{.List.User.Username}}
{{end}}
</p>
</div>
{{range .List.Description}}
<p>{{.}}</p>
{{end}}
<br />
{{template "book_list.html" .List.Books}}
{{template "footer.html" .S}}