All templates now follow: body > nav > article > header + content + footer Removed: - <hgroup> (redundant, header+h1+p serves same purpose) - <main> (article is the content landmark) - role="main" on article (incorrect ARIA) - header block in baseof (header now inside article) Standardized: default, docs, essay, notes, console, page, list, index. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
292 B
HTML
13 lines
292 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode | default "en" }}">
|
|
<head>
|
|
{{- partial "head.html" . -}}
|
|
</head>
|
|
<body>
|
|
{{ partial "nav.html" . }}
|
|
{{ block "content" . }}{{ end }}
|
|
<footer>
|
|
<a href="/">{{ .Site.Title }}</a> · {{ now.Format "2006" }}
|
|
</footer>
|
|
</body>
|
|
</html>
|