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

36 lines
765 B
HTML
Raw Normal View History

2012-08-18 02:06:43 +02:00
{{template "header.html" .S}}
2012-08-15 14:26:10 +02:00
2012-08-17 08:25:44 +02:00
<div class="row">
<div class="span8">
<p>Last books added:</p>
</div>
<div class="span4">
<p class="pull-right">{{.Count}} books</p>
</div>
</div>
<div class="row">
{{with .Books}}
{{range .}}
<div class="span2">
<p class="centered down"><a href="/book/{{.Title}}">{{if .CoverSmall}}<img src="{{.CoverSmall}}" alt="{{.Title}}" />{{end}}</a></p>
</div>
{{end}}
{{end}}
</div>
<div class="row">
2012-08-15 14:26:10 +02:00
{{with .Books}}
{{range .}}
2012-08-17 08:25:44 +02:00
<div class="span2">
<p class="centered"><a href="/book/{{.Title}}"><strong>{{.Title}}</strong></a></p>
</div>
2012-08-15 14:26:10 +02:00
{{end}}
{{end}}
2012-08-17 08:25:44 +02:00
</div>
2012-08-15 12:00:44 +02:00
2012-08-20 17:19:27 +02:00
<div class="row">
<p class="centered">{{range .Tags}}<a class="label" href="/search/?q=subject:{{.}}">{{.}}</a> {{end}}</p>
</div>
2012-08-15 12:00:44 +02:00
{{template "footer.html"}}