summaryrefslogtreecommitdiffstats
path: root/templates/head.html
diff options
context:
space:
mode:
authorLibravatar Anirudh Oppiliappan <x@icyphox.sh>2023-02-18 14:16:43 +0530
committerLibravatar Anirudh Oppiliappan <x@icyphox.sh>2023-02-18 14:17:47 +0530
commit1574bbecb5b2856b2018d064a32d2e7f484a58b1 (patch)
tree0d951885ad44a3df2d0ebeaf99eac2c47ca72c04 /templates/head.html
parentd5a33e9150da61d95ad3ae06f6754a6dd101124a (diff)
downloadlegit-1574bbecb5b2856b2018d064a32d2e7f484a58b1.tar.gz
legit-1574bbecb5b2856b2018d064a32d2e7f484a58b1.tar.bz2
legit-1574bbecb5b2856b2018d064a32d2e7f484a58b1.zip
cleaner titles
by nilix
Diffstat (limited to 'templates/head.html')
-rw-r--r--templates/head.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/head.html b/templates/head.html
index 53487eb..08c572e 100644
--- a/templates/head.html
+++ b/templates/head.html
@@ -5,6 +5,26 @@
<link rel="stylesheet" href="/static/style.css" type="text/css">
<link rel="stylesheet" href="https://cdn.icyphox.sh/fonts/inter.css" type="text/css">
<link rel="icon" type="image/png" size="32x32" href="/static/legit.png">
+ {{ if .parent }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }} ({{ .ref }}): {{ .parent }}/</title>
+
+ {{ else if .path }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }} ({{ .ref }}): {{ .path }}</title>
+ {{ else if .files }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }} ({{ .ref }})</title>
+ {{ else if .commit }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }}: {{ .commit.This }}</title>
+ {{ else if .branches }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }}: refs</title>
+ {{ else if .commits }}
+ {{ if .log }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }}: log</title>
+ {{ else }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }}</title>
+ {{ end }}
+ {{ else }}
+ <title>{{ .meta.Title }}</title>
+ {{ end }}
{{ if and .servername .gomod }}
<meta name="go-import" content="{{ .servername}}/{{ .name }} git https://{{ .servername }}/{{ .name }}">
{{ end }}