forked from Ivasoft/opds-proxy
34 lines
676 B
HTML
34 lines
676 B
HTML
{{define "title"}}{{.Title}}{{end}} {{define "content"}}
|
|
|
|
<nav class="navigation">
|
|
{{if .Search }}
|
|
{{template "search" .}}
|
|
{{end}}
|
|
|
|
<div class="nav-controls">
|
|
<a tabindex="-1" href="/">Home</a>
|
|
{{range .Navigation}}
|
|
<a tabindex="-1" href="?q={{.Href}}">{{.Label}}</a>
|
|
{{end}}
|
|
</div>
|
|
</nav>
|
|
|
|
<ul>
|
|
{{range .Links}}
|
|
<li class="link">
|
|
<a href="?q={{.Href}}">
|
|
{{if .ImageURL}}
|
|
<img src="?q={{.ImageURL}}" alt="{{.Title}}" height="40" />
|
|
{{end}}
|
|
<div class="info">
|
|
<p>{{.Title}}</p>
|
|
{{if empty .Author | not }}
|
|
<p>{{.Author}}</p>
|
|
{{end}}
|
|
</div>
|
|
</a>
|
|
</li>
|
|
{{end}}
|
|
</ul>
|
|
|
|
{{end}} |