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

22 lines
501 B
HTML
Raw Normal View History

2012-08-15 12:00:44 +02:00
{{template "header.html"}}
2012-07-30 23:23:38 +02:00
<h1>Imperial Library of Trantor</h1>
2012-08-15 14:26:10 +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">
</form>
2012-08-15 14:26:10 +02:00
<p>Search on {{.Count}} books.</p>
<p>Last books added:
<ul>
{{with .Books}}
{{range .}}
<li><img src="{{.CoverSmall}}" alt="{{.Title}}" /><a href="/book/{{.Title}}">{{.Title}}</a> - {{range .Author}}{{.}}, {{end}}</li>
{{end}}
{{end}}
</ul>
</p>
2012-08-15 12:00:44 +02:00
{{template "footer.html"}}