summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Anirudh Oppiliappan <x@icyphox.sh>2022-12-18 11:14:38 +0530
committerLibravatar Anirudh Oppiliappan <x@icyphox.sh>2022-12-18 11:14:38 +0530
commit7fe98772b079cca83b854e8f8a6be5dc55c10483 (patch)
treed51a870a94c52cb6060b9db72fa13c3ccb57a72e
parent5ea7cae973e8329ae768c35bda41e656f974815d (diff)
downloadlegit-7fe98772b079cca83b854e8f8a6be5dc55c10483.tar.gz
legit-7fe98772b079cca83b854e8f8a6be5dc55c10483.tar.bz2
legit-7fe98772b079cca83b854e8f8a6be5dc55c10483.zip
templates: add title tags
-rw-r--r--routes/routes.go1
-rw-r--r--templates/file.html1
-rw-r--r--templates/index.html4
-rw-r--r--templates/log.html4
-rw-r--r--templates/refs.html4
5 files changed, 14 insertions, 0 deletions
diff --git a/routes/routes.go b/routes/routes.go
index 920e66c..9d165e7 100644
--- a/routes/routes.go
+++ b/routes/routes.go
@@ -173,6 +173,7 @@ func (d *deps) FileContent(w http.ResponseWriter, r *http.Request) {
data["name"] = name
data["ref"] = ref
data["desc"] = getDescription(path)
+ data["path"] = treePath
d.showFile(contents, data, w)
return
diff --git a/templates/file.html b/templates/file.html
index 4d606cc..a4485f3 100644
--- a/templates/file.html
+++ b/templates/file.html
@@ -1,6 +1,7 @@
{{ define "file" }}
<html>
{{ template "head" . }}
+ <title>{{.name }} &mdash; {{ .path }}</title>
{{ template "repoheader" . }}
<body>
diff --git a/templates/index.html b/templates/index.html
index 25cedfb..1ed1ac2 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -2,6 +2,10 @@
<html>
{{ template "head" . }}
+ <title>
+ {{ .meta.Title }}
+ </title>
+
<header>
<h1>{{ .meta.Title }}</h1>
<h2>{{ .meta.Description }}</h2>
diff --git a/templates/log.html b/templates/log.html
index f5956be..bc028b3 100644
--- a/templates/log.html
+++ b/templates/log.html
@@ -2,6 +2,10 @@
<html>
{{ template "head" . }}
+ <title>
+ {{ .name }} &mdash; log
+ </title>
+
{{ template "repoheader" . }}
<body>
{{ template "nav" . }}
diff --git a/templates/refs.html b/templates/refs.html
index 5320a8e..9257640 100644
--- a/templates/refs.html
+++ b/templates/refs.html
@@ -2,6 +2,10 @@
<html>
{{ template "head" . }}
+ <title>
+ {{ .name }} &mdash; refs
+ </title>
+
{{ template "repoheader" . }}
<body>
{{ template "nav" . }}