templates: Use HTML Standards Mode The lack of <!DOCTYPE html> causes browsers to enter HTML Quirks mode, where "layout emulates behavior in Navigator 4 and Internet Explorer 5". References: https://developer.mozilla.org/en-US/docs/Web/HTML/Quirks_Mode_and_Standards_Mode
Runxi Yu me@runxiyu.org
Sat, 15 Feb 2025 18:28:22 +0800
9 files changed, 9 insertions(+), 0 deletions(-)
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,4 +1,5 @@ {{ define "commit" }} +<!DOCTYPE html> <html> {{ template "head" . }}
M templates/file.html → templates/file.html
@@ -1,4 +1,5 @@ {{ define "file" }} +<!DOCTYPE html> <html> {{ template "head" . }} {{ template "repoheader" . }}
M templates/index.html → templates/index.html
@@ -1,4 +1,5 @@ {{ define "index" }} +<!DOCTYPE html> <html> {{ template "head" . }}
M templates/log.html → templates/log.html
@@ -1,4 +1,5 @@ {{ define "log" }} +<!DOCTYPE html> <html> {{ template "head" . }}
M templates/refs.html → templates/refs.html
@@ -1,4 +1,5 @@ {{ define "refs" }} +<!DOCTYPE html> <html> {{ template "head" . }}
M templates/repo.html → templates/repo.html
@@ -1,4 +1,5 @@ {{ define "repo" }} +<!DOCTYPE html> <html> {{ template "head" . }}
M templates/tree.html → templates/tree.html
@@ -1,4 +1,5 @@ {{ define "tree" }} +<!DOCTYPE html> <html> {{ template "head" . }}