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
2012-09-09 01:19:06 +02:00

35 lines
793 B
HTML

{{template "header.html" .S}}
<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/{{.Id}}">{{if .CoverSmall}}<img class="img-rounded" src="{{.CoverSmall}}" alt="{{.Title}}" />{{end}}</a></p>
</div>
{{end}}
{{end}}
</div>
<div class="row hidden-phone">
{{with .Books}}
{{range .}}
<div class="span2">
<p class="centered"><a href="/book/{{.Id}}"><strong>{{.Title}}</strong></a></p>
</div>
{{end}}
{{end}}
</div>
<div class="row">
<p class="centered">{{range .Tags}}<a class="label" href="/search/?q=subject:{{.}}">{{.}}</a> {{end}}</p>
</div>
{{template "footer.html"}}