From b7ce27db495fa20c84660240cd153317354be3cd Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Sun, 12 Jan 2025 22:10:00 +0100 Subject: [PATCH] changes --- content/content/_index.md | 5 +++++ content/content/about.md | 12 ++++++++++++ content/content/articles/test06.md | 5 +++++ content/content/posts/test03.md | 5 +++++ content/content/posts/test04.md | 5 +++++ content/content/posts/test05.md | 5 +++++ content/hugo.toml | 6 +++++- 7 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 content/content/_index.md create mode 100644 content/content/about.md create mode 100644 content/content/articles/test06.md create mode 100644 content/content/posts/test03.md create mode 100644 content/content/posts/test04.md create mode 100644 content/content/posts/test05.md diff --git a/content/content/_index.md b/content/content/_index.md new file mode 100644 index 0000000..d60d607 --- /dev/null +++ b/content/content/_index.md @@ -0,0 +1,5 @@ +--- +title: "Minimal Setups" +--- +This is the Minimal Setups page + diff --git a/content/content/about.md b/content/content/about.md new file mode 100644 index 0000000..8cde99a --- /dev/null +++ b/content/content/about.md @@ -0,0 +1,12 @@ +--- +title: "About" +menu: + main: + weight: 1 +--- +## About + +This is the about page + + + diff --git a/content/content/articles/test06.md b/content/content/articles/test06.md new file mode 100644 index 0000000..d246474 --- /dev/null +++ b/content/content/articles/test06.md @@ -0,0 +1,5 @@ ++++ +date = '2025-01-12T19:33:39+01:00' +draft = true +title = 'Test06' ++++ diff --git a/content/content/posts/test03.md b/content/content/posts/test03.md new file mode 100644 index 0000000..02f530c --- /dev/null +++ b/content/content/posts/test03.md @@ -0,0 +1,5 @@ ++++ +date = '2025-01-12T19:05:49+01:00' +draft = true +title = 'Test03' ++++ diff --git a/content/content/posts/test04.md b/content/content/posts/test04.md new file mode 100644 index 0000000..4664779 --- /dev/null +++ b/content/content/posts/test04.md @@ -0,0 +1,5 @@ ++++ +date = '2025-01-12T19:05:51+01:00' +draft = true +title = 'Test04' ++++ diff --git a/content/content/posts/test05.md b/content/content/posts/test05.md new file mode 100644 index 0000000..39a4ab2 --- /dev/null +++ b/content/content/posts/test05.md @@ -0,0 +1,5 @@ ++++ +date = '2025-01-12T19:05:53+01:00' +draft = true +title = 'Test05' ++++ diff --git a/content/hugo.toml b/content/hugo.toml index dd4ca4e..8ec6971 100644 --- a/content/hugo.toml +++ b/content/hugo.toml @@ -1,7 +1,11 @@ baseURL = 'https://example.org/' languageCode = 'en-us' -title = 'My New Hugo Site' +title = 'Minimal Setups' theme = "ananke" +sectionPagesMenu = "main" [params] site_logo = "logo.png" + +[security.funcs] +getenv = [ '^HUGO_' ]