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