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

46 lines
927 B
HTML
Raw Normal View History

2012-08-18 02:06:43 +02:00
{{template "header.html" .S}}
2012-08-15 12:00:44 +02:00
2012-08-17 08:25:44 +02:00
<p class="centered">Found {{.Found}} books. Page {{.Page}}</p>
2012-07-30 23:23:38 +02:00
2012-08-17 08:25:44 +02:00
<ul class="pager">
{{if .Prev}}
<li class="previous">
<a href="{{.Prev}}">&larr; Prev</a>
</li>
{{end}}
{{if .Next}}
<li class="next">
<a href="{{.Next}}">Next &rarr;</a>
</li>
{{end}}
</ul>
2012-07-30 23:59:55 +02:00
2012-07-30 23:23:38 +02:00
{{with .Books}}
{{range .}}
2012-08-17 08:25:44 +02:00
<div class="row">
2012-08-18 02:06:43 +02:00
<div class="span1">
2012-08-17 08:25:44 +02:00
<p class="pull-right"><a href="/book/{{.Title}}">{{if .CoverSmall}}<img src="{{.CoverSmall}}" alt="{{.Title}}" />{{end}}</a></p>
</div>
2012-08-18 02:06:43 +02:00
<div class="span11">
2012-08-17 08:25:44 +02:00
<p class="well"><a href="/book/{{.Title}}"><strong>{{.Title}}</strong></a><br />
{{range .Author}}{{.}}, {{end}}</p>
</div>
</div>
2012-07-30 23:23:38 +02:00
{{end}}
{{end}}
2012-07-30 23:59:55 +02:00
2012-08-17 08:25:44 +02:00
<ul class="pager">
{{if .Prev}}
<li class="previous">
<a href="{{.Prev}}">&larr; Prev</a>
</li>
{{end}}
{{if .Next}}
<li class="next">
<a href="{{.Next}}">Next &rarr;</a>
</li>
{{end}}
</ul>
2012-08-15 12:00:44 +02:00
{{template "footer.html"}}