templates: Move header inside body All contentful elements such as <header> should appear inside the <body> tag. References: https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Structuring_content/Structuring_documents
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M templates/file.html → templates/file.html
@@ -2,8 +2,8 @@ {{ 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>