diff options
| author | andre4ik3 <andre4ik3@fastmail.com> | 2025-08-18 17:42:27 +0000 |
|---|---|---|
| committer | andre4ik3 <andre4ik3@fastmail.com> | 2025-08-18 17:42:27 +0000 |
| commit | d9ff6edbfcdc408e23684c00df806eac72fd02b2 (patch) | |
| tree | 45a8fe89aa4de37a2dab4b293330874e37907beb /layouts/baseof.html | |
Initial commit
Diffstat (limited to 'layouts/baseof.html')
| -rw-r--r-- | layouts/baseof.html | 14 |
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> |
