all repos — legit @ e219000dfe52536fcafbe81069c6572a992e6294

Unnamed repository; edit this file 'description' to name the repository.

templates: fix malformed html
ckie git-525ff67@ckie.dev
Mon, 19 Jan 2026 22:33:40 +0200
commit

e219000dfe52536fcafbe81069c6572a992e6294

parent

48ed004f7e6813803d3e9f2d5ffcce98f41b2b75

M templates/404.htmltemplates/404.html

@@ -1,4 +1,5 @@

{{ define "404" }} +<!doctype html> <html> <title>404</title> {{ template "head" . }}
M templates/500.htmltemplates/500.html

@@ -1,4 +1,5 @@

{{ define "500" }} +<!doctype html> <html> <title>500</title> {{ template "head" . }}
M templates/commit.htmltemplates/commit.html

@@ -1,4 +1,5 @@

{{ define "commit" }} +<!doctype html> <html> {{ template "head" . }}
M templates/file.htmltemplates/file.html

@@ -1,4 +1,5 @@

{{ define "file" }} +<!doctype html> <html> {{ template "head" . }} {{ template "repoheader" . }}
M templates/index.htmltemplates/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.htmltemplates/log.html

@@ -1,4 +1,5 @@

{{ define "log" }} +<!doctype html> <html> {{ template "head" . }}
M templates/refs.htmltemplates/refs.html

@@ -1,4 +1,5 @@

{{ define "refs" }} +<!doctype html> <html> {{ template "head" . }}
M templates/repo.htmltemplates/repo.html

@@ -1,4 +1,5 @@

{{ define "repo" }} +<!doctype html> <html> {{ template "head" . }}
M templates/tree.htmltemplates/tree.html

@@ -1,4 +1,5 @@

{{ define "tree" }} +<!doctype html> <html> {{ template "head" . }}