From d194c463d12d94231b643eccb2ffa16e8b8e2f5f Mon Sep 17 00:00:00 2001 From: Greg Date: Sun, 25 May 2025 15:34:06 +0200 Subject: [PATCH] init: create basic Hugo site with config and homepage template --- content/_index.md | 9 +++++++++ hugo.toml | 10 ++++++++++ 2 files changed, 19 insertions(+) create mode 100644 content/_index.md create mode 100644 hugo.toml diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..3fcfae1 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,9 @@ +--- +title: "Welcome to My New Hugo Site!" +date: {{ .Date }} +draft: false +--- + +This is the homepage of your new Hugo site. + +You can start adding content here. diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..c8e0768 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,10 @@ +baseURL = "http://example.org/" +languageCode = "en-us" +title = "My New Hugo Site" +theme = "" # You can specify a theme here later + +[params] + description = "A cool new website built with Hugo and deployed on Coolify!" + +# Default publish directory is 'public', which is what Coolify expects for static sites. +# No need to explicitly set publishDir = "public" unless you change it.