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

44 lines
1.1 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}}
<div class="row justify-content-center">
<div class="col-sm-10 alert alert-info">
2013-07-18 11:42:46 +02:00
<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">
<p class="text-center">There are {{.Count}} books on the library.</p>
2012-08-17 08:25:44 +02:00
</div>
<div class="row">
<div class="col">
<h4>Last books added:</h4>
</div>
<div class="col text-end title">
<small>(<a href="/search/?q=">more</a>)</small>
<a href="/search/?fmt=rss&q="><img src="/img/feed.png"/></a>
</div>
2012-08-17 08:25:44 +02:00
</div>
<div class="row">
{{with .Books}}
{{range .}}
<div class="col-sm-2">
<div class="thumbnail text-center" style="border:none;">
2019-03-02 23:47:24 +00:00
<a href="/book/{{.ID}}" title="{{.Description}}">
{{if .Cover}}<div class="down"><img class="rounded" src="/cover/{{.ID}}/small/{{.Title}}.jpg" alt="{{.Title}}" /></div>{{end}}
<p><strong>{{.Title}}</strong></p>
</a>
</div>
</div>
{{end}}
{{end}}
</div>
2012-08-20 17:19:27 +02:00
<div class="row">
<p class="text-center">{{range .Tags}}<a class="badge bg-secondary" 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}}