all repos — searchix @ 2edf3f098dd1bb79fd97a8f30fe28938cbde9f3c

Search engine for NixOS, nix-darwin, home-manager and NUR users

frontend/templates/blocks/packages.gotmpl (view raw)

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 }}