From bbc0739956d9d30d655b9e42ebc9c6f89f5e54e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20B=C3=B6rchers?= Date: Fri, 26 Aug 2022 22:26:56 +0200 Subject: [PATCH] initial commit --- .gitignore | 13 +++++++++++++ .gitmodules | 3 +++ archetypes/default.md | 6 ++++++ config.toml | 7 +++++++ content/home/index.md | 6 ++++++ content/posts/my-first-post.md | 9 +++++++++ themes/introduction | 1 + 7 files changed, 45 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 config.toml create mode 100644 content/home/index.md create mode 100644 content/posts/my-first-post.md create mode 160000 themes/introduction 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/.gitmodules b/.gitmodules new file mode 100644 index 0000000..8426317 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/introduction"] + path = themes/introduction + url = https://github.com/victoriadrake/hugo-theme-introduction.git 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/config.toml b/config.toml new file mode 100644 index 0000000..1884654 --- /dev/null +++ b/config.toml @@ -0,0 +1,7 @@ +baseURL = 'http://example.org/' +languageCode = 'en-us' +title = 'My New Hugo Site' +theme = "introduction" + +[params] + themeStyle = "dark" # Choose "light" or "dark" or "auto" \ No newline at end of file diff --git a/content/home/index.md b/content/home/index.md new file mode 100644 index 0000000..ea12ef4 --- /dev/null +++ b/content/home/index.md @@ -0,0 +1,6 @@ +--- +title: "Horst Reimann" +draft: true +weight: 0 +--- +\* 21.09.1946 - ✝ 22.08.22 \ No newline at end of file diff --git a/content/posts/my-first-post.md b/content/posts/my-first-post.md new file mode 100644 index 0000000..dd2e43b --- /dev/null +++ b/content/posts/my-first-post.md @@ -0,0 +1,9 @@ +--- +title: "My First Post" +date: 2022-08-25T21:44:46+02:00 +draft: true +--- + +# Hello World + +## I am here to say hello! diff --git a/themes/introduction b/themes/introduction new file mode 160000 index 0000000..591eb5a --- /dev/null +++ b/themes/introduction @@ -0,0 +1 @@ +Subproject commit 591eb5ab070c474f884295369c55fcda15883959