sklad/cmd/sklad/search.tmpl

39 lines
791 B
Cheetah
Raw Normal View History

2019-04-14 20:29:18 +02:00
{{ define "Title" }}„{{ .Query }}“ — Vyhledávání{{ end }}
{{ define "Content" }}
2019-04-16 03:56:53 +02:00
<h2>Vyhledávání: &bdquo;{{ .Query }}&ldquo;</h2>
2019-04-14 20:29:18 +02:00
<h3>Řady</h3>
{{ range .Series }}
<section>
2019-04-16 03:56:53 +02:00
<header>
<h3><a href="series?prefix={{ .Prefix }}">{{ .Prefix }}</a></h3>
2019-04-18 05:59:13 +02:00
<p>{{ .Description | highlight $.Query }}
2019-04-16 03:56:53 +02:00
</header>
2019-04-14 20:29:18 +02:00
</section>
{{ else }}
<p>Neodpovídají žádné řady.
{{ end }}
<h3>Obaly</h3>
{{ range .Containers }}
<section>
2019-04-16 03:56:53 +02:00
<header>
<h3><a href="container?id={{ .Id }}">{{ .Id }}</a>
{{- range .Path }}
<small>&laquo; <a href="container?id={{ . }}">{{ . }}</a></small>
{{- end }}
</h3>
</header>
{{- if .Description }}
2019-04-18 05:59:13 +02:00
<p>{{ .Description | highlight $.Query }}
2019-04-16 03:56:53 +02:00
{{- end }}
2019-04-14 20:29:18 +02:00
</section>
{{ else }}
<p>Neodpovídají žádné obaly.
{{ end }}
{{ end }}