Initialize Theme

This commit is contained in:
2025-06-05 13:38:53 -06:00
parent 03857fe86a
commit 63861e1721
24 changed files with 263 additions and 0 deletions

17
layouts/baseof.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="{{ site.Language.LanguageCode }}" dir="{{ or site.Language.LanguageDirection `ltr` }}">
<head>
{{ partial "head.html" . }}
</head>
<body>
<header>
{{ partial "header.html" . }}
</header>
<main>
{{ block "main" . }}{{ end }}
</main>
<footer>
{{ partial "footer.html" . }}
</footer>
</body>
</html>