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.