Files
bridget/layouts/_default/baseof.html
Sped0n eb6c485ea5 refactor(baseof.html): update language attribute to use site.LanguageCode variable for better localization support
refactor(baseof.html): update page title to use site.Title variable for consistency and easier maintenance
refactor(nav.html): update anchor tags to use relURL instead of relLangURL for correct URL generation
refactor(nav.html): update link text to use .Title instead of .Identifier for better readability
2023-11-03 09:50:32 +08:00

18 lines
465 B
HTML

<!doctype html>
<html lang="{{- site.LanguageCode -}}">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ site.Title }}</title>
{{- partial "head/link.html" -}}
{{- partial "head/meta.html" -}}
{{- partial "head/seo.html" -}}
</head>
<body lang="{{- site.LanguageCode -}}">
<div id="main">
{{- block "main" . -}}
{{- end -}}
</div>
</body>
</html>