aboutsummaryrefslogtreecommitdiff
path: root/sklad/search.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'sklad/search.tmpl')
-rw-r--r--sklad/search.tmpl38
1 files changed, 0 insertions, 38 deletions
diff --git a/sklad/search.tmpl b/sklad/search.tmpl
deleted file mode 100644
index cf704cf..0000000
--- a/sklad/search.tmpl
+++ /dev/null
@@ -1,38 +0,0 @@
-{{ define "Title" }}„{{ .Query }}“ — Vyhledávání{{ end }}
-{{ define "Content" }}
-
-<h2>Vyhledávání: &bdquo;{{ .Query }}&ldquo;<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>&laquo; <a href="/?id={{ . }}">{{ . }}</a></small>
-{{ end }}
- </h3>
-</header>
-{{ if .Description }}
-<p>{{ .Description }}
-{{ end }}
-</section>
-{{ else }}
-<p>Neodpovídají žádné obaly.
-{{ end }}
-
-{{ end }}