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_' ]