all repos — elgit @ 6887878020113a7b0cc422097e0c452d5552e99a

fork of legit: web frontend for git, written in go

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
Runxi Yu me@runxiyu.org
Sat, 15 Feb 2025 18:33:49 +0800
commit

6887878020113a7b0cc422097e0c452d5552e99a

parent

8f8a079b2b3fdd26a10b27ee534319579d5e1bf5

M templates/commit.htmltemplates/commit.html
@@ -3,8 +3,8 @@ <!DOCTYPE html> <html>
 {{ template "head" . }}
 
-  {{ template "repoheader" . }}
   <body>
+    {{ template "repoheader" . }}
     {{ template "nav" . }}
     <main>
       <section class="commit">
M templates/file.htmltemplates/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>
M templates/index.htmltemplates/index.html
@@ -3,11 +3,11 @@ <!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
@@ -3,8 +3,8 @@ <!DOCTYPE html> <html>
 {{ template "head" . }}
 
-  {{ template "repoheader" . }}
   <body>
+    {{ template "repoheader" . }}
     {{ template "nav" . }}
     <main>
       {{ $repo := .name }}
M templates/refs.htmltemplates/refs.html
@@ -3,8 +3,8 @@ <!DOCTYPE html> <html>
 {{ template "head" . }}
 
-  {{ template "repoheader" . }}
   <body>
+    {{ template "repoheader" . }}
     {{ template "nav" . }}
     <main>
       {{ $name := .name }}
M templates/repo.htmltemplates/repo.html
@@ -3,10 +3,10 @@ <!DOCTYPE html> <html>
 {{ template "head" . }}
 
-{{ template "repoheader" . }}
-
   <body>
+    {{ template "repoheader" . }}
     {{ template "nav" . }}
+
     <main>
       {{ $repo := .name }}
       <div class="log">
M templates/tree.htmltemplates/tree.html
@@ -4,8 +4,8 @@ <html> 
 {{ template "head" . }}
 
-  {{ template "repoheader" . }}
   <body>
+    {{ template "repoheader" . }}
     {{ template "nav" . }}
     <main>
       {{ $repo := .name }}