diff options
author | Anirudh Oppiliappan <x@icyphox.sh> | 2023-02-18 14:16:43 +0530 |
---|---|---|
committer | Anirudh Oppiliappan <x@icyphox.sh> | 2023-02-18 14:17:47 +0530 |
commit | 1574bbecb5b2856b2018d064a32d2e7f484a58b1 (patch) | |
tree | 0d951885ad44a3df2d0ebeaf99eac2c47ca72c04 | |
parent | d5a33e9150da61d95ad3ae06f6754a6dd101124a (diff) | |
download | legit-1574bbecb5b2856b2018d064a32d2e7f484a58b1.tar.gz legit-1574bbecb5b2856b2018d064a32d2e7f484a58b1.tar.bz2 legit-1574bbecb5b2856b2018d064a32d2e7f484a58b1.zip |
cleaner titles
by nilix
Diffstat (limited to '')
-rw-r--r-- | routes/routes.go | 3 | ||||
-rw-r--r-- | static/style.css | 9 | ||||
-rw-r--r-- | templates/file.html | 22 | ||||
-rw-r--r-- | templates/head.html | 20 | ||||
-rw-r--r-- | templates/index.html | 4 | ||||
-rw-r--r-- | templates/log.html | 4 | ||||
-rw-r--r-- | templates/refs.html | 4 | ||||
-rw-r--r-- | templates/repo.html | 5 | ||||
-rw-r--r-- | templates/tree.html | 6 |
9 files changed, 36 insertions, 41 deletions
diff --git a/routes/routes.go b/routes/routes.go index 143bb2b..0cf1c35 100644 --- a/routes/routes.go +++ b/routes/routes.go @@ -190,6 +190,7 @@ func (d *deps) RepoTree(w http.ResponseWriter, r *http.Request) { data["ref"] = ref data["parent"] = treePath data["desc"] = getDescription(path) + data["dotdot"] = filepath.Dir(treePath) d.listFiles(files, data, w) return @@ -254,7 +255,7 @@ func (d *deps) Log(w http.ResponseWriter, r *http.Request) { data["name"] = name data["ref"] = ref data["desc"] = getDescription(path) - data["dotdot"] = filepath.Dir(path) + data["log"] = true if err := t.ExecuteTemplate(w, "log", data); err != nil { log.Println(err) diff --git a/static/style.css b/static/style.css index e012306..2fa2e9d 100644 --- a/static/style.css +++ b/static/style.css @@ -252,17 +252,18 @@ a:hover { } .file-wrapper { + display: flex; + flex-direction: row; + grid-template-columns: 1rem minmax(0, 1fr); + gap: 1rem; + padding: 0.5rem; background: var(--light-gray); - display: table; - padding: 0.5rem - width: 100%; } .file-content { background: var(--light-gray); overflow-y: hidden; overflow-x: auto; - display: block; } .diff-type { diff --git a/templates/file.html b/templates/file.html index 82a3384..8898786 100644 --- a/templates/file.html +++ b/templates/file.html @@ -1,29 +1,23 @@ {{ define "file" }} <html> {{ template "head" . }} - <title>{{.name }} — {{ .path }}</title> - {{ template "repoheader" . }} <body> {{ template "nav" . }} <main> <p>{{ .path }}</p> - <table class="file-wrapper"> - <tbody><tr> - <td class="line-numbers"> - <pre> - {{- range .linecount }} + <div class="file-wrapper"> + <div class="line-numbers"> + {{- range .linecount }} <a id="L{{ . }}" href="#L{{ . }}">{{ . }}</a> - {{- end -}} - </pre> - </td> - <td class="file-content"> + {{- end -}} + </div> + <div class="file-content"> + <span></span> <pre> {{- .content -}} </pre> - </td> - </tbody></tr> - </table> + </div> </main> </body> </html> 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 }} — {{ .name }} ({{ .ref }}): {{ .parent }}/</title> + + {{ else if .path }} + <title>{{ .meta.Title }} — {{ .name }} ({{ .ref }}): {{ .path }}</title> + {{ else if .files }} + <title>{{ .meta.Title }} — {{ .name }} ({{ .ref }})</title> + {{ else if .commit }} + <title>{{ .meta.Title }} — {{ .name }}: {{ .commit.This }}</title> + {{ else if .branches }} + <title>{{ .meta.Title }} — {{ .name }}: refs</title> + {{ else if .commits }} + {{ if .log }} + <title>{{ .meta.Title }} — {{ .name }}: log</title> + {{ else }} + <title>{{ .meta.Title }} — {{ .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 }} diff --git a/templates/index.html b/templates/index.html index 8bff3d7..80c9e1d 100644 --- a/templates/index.html +++ b/templates/index.html @@ -2,10 +2,6 @@ <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 1ab6cbc..7d74cb3 100644 --- a/templates/log.html +++ b/templates/log.html @@ -2,10 +2,6 @@ <html> {{ template "head" . }} - <title> - {{ .name }} — log - </title> - {{ template "repoheader" . }} <body> {{ template "nav" . }} diff --git a/templates/refs.html b/templates/refs.html index 8480856..76add7d 100644 --- a/templates/refs.html +++ b/templates/refs.html @@ -2,10 +2,6 @@ <html> {{ template "head" . }} - <title> - {{ .name }} — refs - </title> - {{ template "repoheader" . }} <body> {{ template "nav" . }} diff --git a/templates/repo.html b/templates/repo.html index 1c700b5..1cd9b5c 100644 --- a/templates/repo.html +++ b/templates/repo.html @@ -1,10 +1,5 @@ {{ define "repo" }} <html> - <title>{{ .name }} - {{ if .parent }} - — {{ .parent }} - {{ end }} - </title> {{ template "head" . }} {{ template "repoheader" . }} diff --git a/templates/tree.html b/templates/tree.html index 496dceb..c4b7e4f 100644 --- a/templates/tree.html +++ b/templates/tree.html @@ -1,10 +1,6 @@ {{ define "tree" }} <html> - <title>{{ .name }} - {{ if .parent }} - — {{ .parent }} - {{ end }} - </title> + {{ template "head" . }} {{ template "repoheader" . }} |