From a3927cfeb9d7f877bed68bd570b8895083065743 Mon Sep 17 00:00:00 2001 From: Fritz Grimpen Date: Wed, 9 Oct 2024 21:04:32 +0000 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ .gitmodules | 4 ++++ archetypes/default.md | 5 +++++ content/_index.md | 4 ++++ hugo.toml | 4 ++++ themes/book | 1 + 6 files changed, 20 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 content/_index.md create mode 100644 hugo.toml create mode 160000 themes/book diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..73ab876 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +public/ +resources/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..c5d641f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "themes/book"] + path = themes/book + url = https://github.com/alex-shpak/hugo-book.git + branch = master 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/content/_index.md b/content/_index.md new file mode 100644 index 0000000..e5c1cc3 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,4 @@ ++++ +title="Startseite" ++++ +# Chaos Computer Club Bremen e.V. diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..2dd0812 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,4 @@ +baseURL = 'https://ccchb.de/' +languageCode = 'de-de' +title = 'Chaos Computer Club Bremen e.V.' +theme = 'book' diff --git a/themes/book b/themes/book new file mode 160000 index 0000000..e4c0628 --- /dev/null +++ b/themes/book @@ -0,0 +1 @@ +Subproject commit e4c062890b077898b1a637299c4d068cfa79ea3c