diff options
Diffstat (limited to 'sklad/search.tmpl')
-rw-r--r-- | sklad/search.tmpl | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sklad/search.tmpl b/sklad/search.tmpl new file mode 100644 index 0000000..cf704cf --- /dev/null +++ b/sklad/search.tmpl @@ -0,0 +1,38 @@ +{{ define "Title" }}„{{ .Query }}“ — Vyhledávání{{ end }} +{{ define "Content" }} + +<h2>Vyhledávání: „{{ .Query }}“<h2> + +<h3>Řady</h3> + +{{ range .Series }} +<section> +<header> + <h3><a href="/series?prefix={{ .Prefix }}">{{ .Prefix }}</a></h3> + <p>{{ .Description }} +</header> +</section> +{{ else }} +<p>Neodpovídají žádné řady. +{{ end }} + +<h3>Obaly</h3> + +{{ range .Containers }} +<section> +<header> + <h3><a href="/?id={{ .Id }}">{{ .Id }}</a> +{{ range .Path }} + <small>« <a href="/?id={{ . }}">{{ . }}</a></small> +{{ end }} + </h3> +</header> +{{ if .Description }} +<p>{{ .Description }} +{{ end }} +</section> +{{ else }} +<p>Neodpovídají žádné obaly. +{{ end }} + +{{ end }} |