From 1176093c58fcf353ce1d82f8d25fce564f234e5f Mon Sep 17 00:00:00 2001 From: ash Date: Thu, 19 Feb 2026 17:11:09 +0000 Subject: [PATCH] Basic Hugo Site --- .gitmodules | 3 +++ .hugo_build.lock | 0 archetypes/default.md | 5 +++++ content/posts/hello-world.md | 7 +++++++ hugo.toml | 9 +++++++++ themes/PaperMod | 1 + 6 files changed, 25 insertions(+) create mode 100644 .gitmodules create mode 100644 .hugo_build.lock create mode 100644 archetypes/default.md create mode 100644 content/posts/hello-world.md create mode 100644 hugo.toml create mode 160000 themes/PaperMod diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..89af1b0 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/PaperMod"] + path = themes/PaperMod + url = https://github.com/adityatelange/hugo-PaperMod.git diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..25b6752 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +date = '{{ .Date }}' +draft = true +title = '{{ replace .File.ContentBaseName "-" " " | title }}' ++++ diff --git a/content/posts/hello-world.md b/content/posts/hello-world.md new file mode 100644 index 0000000..51f0171 --- /dev/null +++ b/content/posts/hello-world.md @@ -0,0 +1,7 @@ ++++ +date = '2026-02-19T17:06:48Z' +draft = false +title = 'Hello World' ++++ + +Testing 123 \ No newline at end of file diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..02166dc --- /dev/null +++ b/hugo.toml @@ -0,0 +1,9 @@ +baseURL = 'https://me.marlow.boats' +languageCode = 'en-uk' +title = 'My Self-Hosted Blog' +theme = 'PaperMod' + +[params] + defaultTheme = "auto" + showShareButtons = true + showCodeCopyButtons = true \ No newline at end of file diff --git a/themes/PaperMod b/themes/PaperMod new file mode 160000 index 0000000..3bb0ca2 --- /dev/null +++ b/themes/PaperMod @@ -0,0 +1 @@ +Subproject commit 3bb0ca281fd17eff8e3489011a444f326d7c4c72