initial commit

This commit is contained in:
Holger Börchers 2022-08-26 22:26:56 +02:00
parent 094f3dcdcc
commit bbc0739956
7 changed files with 45 additions and 0 deletions

13
.gitignore vendored Normal file
View File

@ -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

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/introduction"]
path = themes/introduction
url = https://github.com/victoriadrake/hugo-theme-introduction.git

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

7
config.toml Normal file
View File

@ -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"

6
content/home/index.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "Horst Reimann"
draft: true
weight: 0
---
\* 21.09.1946 - ✝ 22.08.22

View File

@ -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!

1
themes/introduction Submodule

@ -0,0 +1 @@
Subproject commit 591eb5ab070c474f884295369c55fcda15883959