cleaner titles by nilix
Anirudh Oppiliappan x@icyphox.sh
Sat, 18 Feb 2023 14:16:43 +0530
9 files changed,
36 insertions(+),
41 deletions(-)
M
routes/routes.go
→
routes/routes.go
@@ -190,6 +190,7 @@ data["name"] = name
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 @@ data["meta"] = d.c.Meta
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)
M
static/style.css
→
static/style.css
@@ -252,17 +252,18 @@ margin-right: 1ch;
} .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 {
M
templates/file.html
→
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>
M
templates/head.html
→
templates/head.html
@@ -5,6 +5,26 @@ <meta name="viewport" content="width=device-width, initial-scale=1">
<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 }}
M
templates/index.html
→
templates/index.html
@@ -2,10 +2,6 @@ {{ define "index" }}
<html> {{ template "head" . }} - <title> - {{ .meta.Title }} - </title> - <header> <h1>{{ .meta.Title }}</h1> <h2>{{ .meta.Description }}</h2>
M
templates/log.html
→
templates/log.html
@@ -2,10 +2,6 @@ {{ define "log" }}
<html> {{ template "head" . }} - <title> - {{ .name }} — log - </title> - {{ template "repoheader" . }} <body> {{ template "nav" . }}
M
templates/refs.html
→
templates/refs.html
@@ -2,10 +2,6 @@ {{ define "refs" }}
<html> {{ template "head" . }} - <title> - {{ .name }} — refs - </title> - {{ template "repoheader" . }} <body> {{ template "nav" . }}
M
templates/repo.html
→
templates/repo.html
@@ -1,10 +1,5 @@
{{ define "repo" }} <html> - <title>{{ .name }} - {{ if .parent }} - — {{ .parent }} - {{ end }} - </title> {{ template "head" . }} {{ template "repoheader" . }}
M
templates/tree.html
→
templates/tree.html
@@ -1,10 +1,6 @@
{{ define "tree" }} <html> - <title>{{ .name }} - {{ if .parent }} - — {{ .parent }} - {{ end }} - </title> + {{ template "head" . }} {{ template "repoheader" . }}