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

38 lines
794 B
HTML
Raw Normal View History

2012-08-15 12:00:44 +02:00
{{template "header.html"}}
2012-08-17 08:25:44 +02:00
<!--<p><img src="/img/library.jpg" alt="library" /></p>
2012-07-30 23:23:38 +02:00
<form action="/search/">
<input type="search" name="q" />
<input type="submit" value="Search">
2012-08-17 08:25:44 +02:00
</form>-->
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
{{template "footer.html"}}