this repo has no description
1{{ define "head" }}
2<head>
3 <meta charset="utf-8" />
4 <meta name="viewport" content="width=device-width, initial-scale=1" />
5 <link rel="stylesheet" href="/static/style.css" type="text/css" />
6 <link rel="icon" type="image/png" size="32x32" href="/static/legit.png" />
7 <script src="https://unpkg.com/htmx.org@2.0.4"></script>
8 <meta name="htmx-config" content='{"selfRequestsOnly":false}' />
9
10 {{ if .parent }}
11 <title>
12 {{ .meta.Title }} — {{ .name }} ({{ .ref }}): {{ .parent }}/
13 </title>
14
15 {{ else if .path }}
16 <title>
17 {{ .meta.Title }} — {{ .name }} ({{ .ref }}): {{ .path }}
18 </title>
19 {{ else if .files }}
20 <title>{{ .meta.Title }} — {{ .name }} ({{ .ref }})</title>
21 {{ else if .commit }}
22 <title>{{ .meta.Title }} — {{ .name }}: {{ .commit.This }}</title>
23 {{ else if .branches }}
24 <title>{{ .meta.Title }} — {{ .name }}: refs</title>
25 {{ else if .commits }} {{ if .log }}
26 <title>{{ .meta.Title }} — {{ .name }}: log</title>
27 {{ else }}
28 <title>{{ .meta.Title }} — {{ .name }}</title>
29 {{ end }} {{ else }}
30 <title>{{ .meta.Title }}</title>
31 {{ end }} {{ if and .servername .gomod }}
32 <meta
33 name="go-import"
34 content="{{ .servername}}/{{ .name }} git https://{{ .servername }}/{{ .name }}"
35 />
36 {{ end }}
37 <!-- other meta tags here -->
38</head>
39{{ end }}