From 895457555d758266c8c722d6e4bdb4142f6a2d60 Mon Sep 17 00:00:00 2001 From: rtk0c Date: Sat, 21 Oct 2023 12:51:18 -0700 Subject: Rest of Hugo files --- .gitignore | 13 +++++++++++++ archetypes/default.md | 6 ++++++ hugo.toml | 4 ++++ 3 files changed, 23 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..86c95ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# Generated files by hugo +/public/ +/resources/_gen/ +/assets/jsconfig.json +hugo_stats.json + +# Executable may be added to repository +hugo.exe +hugo.darwin +hugo.linux + +# Temporary lock file while building +/.hugo_build.lock diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..9c05145 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,4 @@ +baseURL = "http://example.org/" +languageCode = "en-us" +theme = "PaperMod" +title = "rtk0c's hut" -- cgit v1.3.1