diff options
author | claw0ry <me@claw0ry.net> | 2024-12-11 13:56:52 +0100 |
---|---|---|
committer | claw0ry <me@claw0ry.net> | 2024-12-11 13:56:52 +0100 |
commit | 4719cc03837490ed4bf1b9725d75a686e56e5a6a (patch) | |
tree | 769dd3a3a87153df049b3043196bd131495b10ad /themes/plaintext/layouts/_default/baseof.html |
fresh start
Diffstat (limited to 'themes/plaintext/layouts/_default/baseof.html')
-rw-r--r-- | themes/plaintext/layouts/_default/baseof.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/themes/plaintext/layouts/_default/baseof.html b/themes/plaintext/layouts/_default/baseof.html new file mode 100644 index 0000000..2f38a78 --- /dev/null +++ b/themes/plaintext/layouts/_default/baseof.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> + +{{ "<!--" | safeHTML }} + + Hello, from the source code! :) + + I'm sorry the source code is a little messy. Hugo does not indent correctly.. + + @claw0ry + +{{ "-->" | safeHTML }} + +<html lang="{{ or site.Language.LanguageCode site.Language.Lang }}"> + +<head> + {{ partial "head.html" . }} +</head> + +<body> + <header> + {{ partial "header.html" . }} + </header> + + <div class="content"> + <main> + {{ block "main" . }}{{ end }} + + </main> + + <footer> + {{ partial "footer.html" . }} + </footer> + </div> +</body> + +</html> |