diff options
author | Prefetch | 2022-10-14 23:25:28 +0200 |
---|---|---|
committer | Prefetch | 2022-10-14 23:25:28 +0200 |
commit | 6ce0bb9a8f9fd7d169cbb414a9537d68c5290aae (patch) | |
tree | a0abb6b22f77c0e84ed38277d14662412ce14f39 /source/_layouts/default.html |
Initial commit after migration from Hugo
Diffstat (limited to 'source/_layouts/default.html')
-rw-r--r-- | source/_layouts/default.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source/_layouts/default.html b/source/_layouts/default.html new file mode 100644 index 0000000..2f1cac2 --- /dev/null +++ b/source/_layouts/default.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> +<head> +{% include preamble.html %} +<title>{{ page.title }} | {{ site.title }}</title> +</head> +<body> +{% include navigation.html %} +{{ content }} +{% include footer.html %} +</body> +</html> |