Add basic html/rss support for book lists

This commit is contained in:
Las Zenow 2018-04-09 09:47:44 +00:00
parent c0a70a18e1
commit 46762ea17b
11 changed files with 254 additions and 78 deletions

16
templates/list.html Normal file
View file

@ -0,0 +1,16 @@
{{template "header.html" .S}}
<div class="row">
<h4 class="span10">{{.List.Title}} <a href="/list/{{.List.ListID}}?fmt=rss"><img src="/img/feed.png"/></a></h4>
<p class="span2 pull-right">By {{.List.User.Username}}</p>
</div>
<br />
{{range .List.Description}}
<p>{{.}}</p>
{{end}}
{{template "book_list.html" .List.Books}}
{{template "footer.html"}}