Merge branch 'html-fixes'
Alan Pearce alan@alanpearce.eu
Sat, 29 Mar 2025 15:44:44 +0100
12 files changed, 30 insertions(+), 22 deletions(-)
M config.yaml → config.yaml
@@ -1,5 +1,5 @@ repo: - scanPath: /var/www/git + scanPath: /tmp/git readme: - readme - README
M templates/404.html → templates/404.html
@@ -1,4 +1,5 @@ {{ define "404" }} +<!DOCTYPE html> <html> <title>404</title> {{ template "head" . }}
M templates/500.html → templates/500.html
@@ -1,4 +1,5 @@ {{ define "500" }} +<!DOCTYPE html> <html> <title>500</title> {{ template "head" . }}
M templates/commit.html → templates/commit.html
@@ -1,9 +1,10 @@ {{ define "commit" }} +<!DOCTYPE html> <html> {{ template "head" . }} - {{ template "repoheader" . }} <body> + {{ template "repoheader" . }} {{ template "nav" . }} <main> <section class="commit"> @@ -41,11 +42,11 @@ </div> <div> <br> <strong>jump to</strong> - {{ range .diff }} <ul> + {{ range .diff }} <li><a href="#{{ .Name.New }}">{{ .Name.New }}</a></li> - </ul> {{ end }} + </ul> </div> </div> </section> @@ -77,9 +78,8 @@ {{- end -}} {{ if .IsBinary }} <p>Not showing binary file.</p> {{ else }} - <pre> + <pre><span style="display: block">{{- .Header -}}</span> {{- range .TextFragments -}} - <p>{{- .Header -}}</p> {{- range .Lines -}} {{- if eq .Op.String "+" -}} <span class="diff-add">{{ .String }}</span>
M templates/file.html → templates/file.html
@@ -1,8 +1,9 @@ {{ define "file" }} +<!DOCTYPE html> <html> {{ template "head" . }} - {{ template "repoheader" . }} <body> + {{ template "repoheader" . }} {{ template "nav" . }} <main> <p>{{ .path }} (<a style="color: gray" href="?raw=true">view raw</a>)</p> @@ -26,7 +27,7 @@ <pre> {{- .content -}} </pre> </td> - </tbody></tr> + </tr></tbody> </table> </div> {{end}}
M templates/head.html → templates/head.html
@@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="/static/style.css" type="text/css"> - <link rel="icon" type="image/png" size="32x32" href="/static/legit.png"> + <link rel="icon" type="image/png" sizes="32x32" href="/static/legit.png"> {{ if .parent }} <title>{{ .meta.Title }} — {{ .name }} ({{ .ref }}): {{ .parent }}/</title>
M templates/index.html → templates/index.html
@@ -1,12 +1,13 @@ {{ define "index" }} +<!DOCTYPE html> <html> {{ template "head" . }} - <header> - <h1>{{ .meta.Title }}</h1> - <h2>{{ .meta.Description }}</h2> - </header> <body> + <header> + <h1>{{ .meta.Title }}</h1> + <h2>{{ .meta.Description }}</h2> + </header> <main> <div class="index"> {{ range .info }}
M templates/log.html → templates/log.html
@@ -1,9 +1,10 @@ {{ define "log" }} +<!DOCTYPE html> <html> {{ template "head" . }} - {{ template "repoheader" . }} <body> + {{ template "repoheader" . }} {{ template "nav" . }} <main> {{ $repo := .name }}
M templates/refs.html → templates/refs.html
@@ -1,9 +1,10 @@ {{ define "refs" }} +<!DOCTYPE html> <html> {{ template "head" . }} - {{ template "repoheader" . }} <body> + {{ template "repoheader" . }} {{ template "nav" . }} <main> {{ $name := .name }}
M templates/repo.html → templates/repo.html
@@ -1,11 +1,12 @@ {{ define "repo" }} +<!DOCTYPE html> <html> {{ template "head" . }} - -{{ template "repoheader" . }} <body> + {{ template "repoheader" . }} {{ template "nav" . }} + <main> {{ $repo := .name }} <div class="log">
M templates/tree.html → templates/tree.html
@@ -1,10 +1,11 @@ {{ define "tree" }} +<!DOCTYPE html> <html> {{ template "head" . }} - {{ template "repoheader" . }} <body> + {{ template "repoheader" . }} {{ template "nav" . }} <main> {{ $repo := .name }}