summaryrefslogtreecommitdiff
path: root/layouts/baseof.html
diff options
context:
space:
mode:
authorandre4ik3 <andre4ik3@fastmail.com>2025-08-18 17:42:27 +0000
committerandre4ik3 <andre4ik3@fastmail.com>2025-08-18 17:42:27 +0000
commitd9ff6edbfcdc408e23684c00df806eac72fd02b2 (patch)
tree45a8fe89aa4de37a2dab4b293330874e37907beb /layouts/baseof.html
Initial commit
Diffstat (limited to 'layouts/baseof.html')
-rw-r--r--layouts/baseof.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/baseof.html b/layouts/baseof.html
new file mode 100644
index 0000000..bcf79c4
--- /dev/null
+++ b/layouts/baseof.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <title>{{ .Title }}</title>
+ <link rel="stylesheet" href="{{ "styles.css" | absURL }}">
+ </head>
+ <body>
+ <main>
+ {{ block "main" . }}
+ {{ end }}
+ </main>
+ </body>
+</html>