aboutsummaryrefslogtreecommitdiff
path: root/sklad/search.tmpl
diff options
context:
space:
mode:
authorPřemysl Janouch <p@janouch.name>2019-04-14 22:30:40 +0200
committerPřemysl Janouch <p@janouch.name>2019-04-14 22:30:40 +0200
commit1331f3b5642f521236fcb1ec21ee43d5b76c0b91 (patch)
tree1213c2f2014cf0eff5a4a881b02cbebf91a604b8 /sklad/search.tmpl
parent7d9410c6b3a724e3670941f7ec2d00e7966d0b1a (diff)
downloadsklad-1331f3b5642f521236fcb1ec21ee43d5b76c0b91.tar.gz
sklad-1331f3b5642f521236fcb1ec21ee43d5b76c0b91.tar.xz
sklad-1331f3b5642f521236fcb1ec21ee43d5b76c0b91.zip
Move commands under cmd/
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" }}&bdquo;{{ .Query }}&ldquo; &mdash; 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 }}