From 5f02313cd2eb97874a3efe2d75aee96958e9689f Mon Sep 17 00:00:00 2001 From: Federico Angelilli Date: Sun, 15 Dec 2024 02:19:53 +0100 Subject: Initialize --- .gitignore | 4 ++++ .gitmodules | 6 ++++++ archetypes/default.md | 5 +++++ hugo.toml | 5 +++++ themes/chilldark | 1 + 5 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 hugo.toml create mode 160000 themes/chilldark diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0385db0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.lock +*.old +node_modules +public diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..b9462f3 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "hugo-chilldark"] + path = hugo-chilldark + url = https://github.com/fedang/hugo-chilldark +[submodule "themes/chilldark"] + path = themes/chilldark + url = https://github.com/fedang/hugo-chilldark diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..b6972ee --- /dev/null +++ b/hugo.toml @@ -0,0 +1,5 @@ +baseURL = 'https://example.org/' +languageCode = 'en-us' +title = 'My New Hugo Site' + +theme = 'chilldark' diff --git a/themes/chilldark b/themes/chilldark new file mode 160000 index 0000000..7a71b53 --- /dev/null +++ b/themes/chilldark @@ -0,0 +1 @@ +Subproject commit 7a71b53f1f4dfee57246455f1d2d9101975af825 -- cgit v1.2.3