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, 4 insertions(+), 4 deletions(-)
changed files
M templates/index.html → templates/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 }}