From e4ea23ae12212c77618647e8048d5a0b640fe50b Mon Sep 17 00:00:00 2001 From: Nicola Belluti Date: Thu, 2 Jan 2025 16:35:17 +0100 Subject: [PATCH] Added the base for Hugo --- .gitignore | 3 +++ archetypes/default.md | 5 +++++ hugo.toml | 3 +++ 3 files changed, 11 insertions(+) create mode 100644 .gitignore create mode 100644 archetypes/default.md create mode 100644 hugo.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4b396c8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +resources/ +public/ +.hugo_build.lock 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/hugo.toml b/hugo.toml new file mode 100644 index 0000000..0d4d3c0 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,3 @@ +baseURL = 'https://little-emulator.org/' +languageCode = 'en-us' +title = 'Little Emulator'