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/index.html

81 lines
2 KiB
HTML
Raw Permalink Normal View History

2012-08-18 02:06:43 +02:00
{{template "header.html" .S}}
2012-08-15 14:26:10 +02:00
2013-07-18 11:42:46 +02:00
{{range .News}}
2013-08-31 02:15:33 +02:00
<div class="row">
2013-07-18 11:42:46 +02:00
<div class="offset2 span8 alert alert-info">
<a href="/news/"><strong>News!</strong></a> {{.Text}}
</div>
2013-08-31 02:15:33 +02:00
</div>
2013-07-18 11:42:46 +02:00
{{end}}
2012-08-17 08:25:44 +02:00
<div class="row">
2013-09-02 23:53:44 +02:00
<p class="centered">There are {{.Count}} books on the library.</p>
2012-08-17 08:25:44 +02:00
</div>
<div class="row">
<h4>Last books added:
<span class="pull-right">
<small>(<a href="/search/?q=">more</a>)</small>
<a href="/search/?fmt=rss&q="><img src="/img/feed.png"/></a>
2013-11-17 19:11:36 +01:00
</span>
</h4>
2012-08-17 08:25:44 +02:00
</div>
<ul class="row thumbnails">
2012-08-15 14:26:10 +02:00
{{with .Books}}
{{range .}}
<li class="span2">
<div class="thumbnail centered" style="border:none;">
2019-03-02 23:47:24 +00:00
<a href="/book/{{.ID}}" title="{{.Description}}">
2016-07-30 07:59:30 -04:00
{{if .Cover}}<div class="down"><img class="img-rounded" src="/cover/{{.ID}}/small/{{.Title}}.jpg" alt="{{.Title}}" /></div>{{end}}
<p><strong>{{.Title}}</strong></p>
</a>
2012-08-17 08:25:44 +02:00
</div>
</li>
2012-08-15 14:26:10 +02:00
{{end}}
{{end}}
</ul>
2012-08-15 12:00:44 +02:00
<!--
<div class="row">
<h4>Most visited books:</h4>
</div>
<ul class="row thumbnails">
{{with .VisitedBooks}}
{{range .}}
<li class="span2">
<div class="thumbnail centered" style="border:none;">
2019-03-02 23:47:24 +00:00
<a href="/book/{{.ID}}" title="{{.Description}}">
2016-07-30 07:59:30 -04:00
{{if .Cover}}<div class="down"><img class="img-rounded" src="/cover/{{.ID}}/small/{{.Title}}.jpg" alt="{{.Title}}" /></div>{{end}}
<p><strong>{{.Title}}</strong></p>
</a>
</div>
</li>
{{end}}
{{end}}
</ul>
<div class="row">
<h4>Most downloaded books:</h4>
</div>
<ul class="row thumbnails">
{{with .DownloadedBooks}}
{{range .}}
<li class="span2">
<div class="thumbnail centered" style="border:none;">
2019-03-02 23:47:24 +00:00
<a href="/book/{{.ID}}" title="{{.Description}}">
2016-07-30 07:59:30 -04:00
{{if .Cover}}<div class="down"><img class="img-rounded" src="/cover/{{.ID}}/small/{{.Title}}.jpg" alt="{{.Title}}" /></div>{{end}}
<p><strong>{{.Title}}</strong></p>
</a>
</div>
</li>
{{end}}
{{end}}
</ul>
-->
2012-08-20 17:19:27 +02:00
<div class="row">
<p class="centered">{{range .Tags}}<a class="label" href="/search/?q=tag:{{.}}">{{.}}</a> {{end}}</p>
2012-08-20 17:19:27 +02:00
</div>
2020-03-23 19:13:58 +00:00
{{template "footer.html" .S}}