about summary refs log tree commit diff stats
path: root/frontend/templates/blocks/packages.gotmpl
blob: 68f92463a8eea9c130a2f13eb283b9fc44065234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{- define "hits" }}
  {{- range . }}
    {{- with .Data }}
      <details id="{{ .Name }}">
        <summary>
          <h3>
            {{ .Name }}
          </h3>
        </summary>
        {{ .Description }}
        <dl>
          {{- with .Version }}
            <dt>Version</dt>
            <dd>{{ . }}</dd>
          {{- end }}
          {{- with .Definition }}
            <dt>Defined</dt>
            <dd>
              <a href="{{ . }}">Source</a>
            </dd>
          {{- end }}
        </dl>
      </details>
    {{- end }}
  {{- end }}
{{- end }}