From 33270c3772755f6be75e45f360ba83595865c249 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Fri, 6 Sep 2024 01:08:06 -0400 Subject: [PATCH] Add some Things --- content/things/one.html | 9 +++++++++ content/things/two.html | 9 +++++++++ hugo.yaml | 3 +++ 3 files changed, 21 insertions(+) create mode 100644 content/things/one.html create mode 100644 content/things/two.html diff --git a/content/things/one.html b/content/things/one.html new file mode 100644 index 0000000..5e702ba --- /dev/null +++ b/content/things/one.html @@ -0,0 +1,9 @@ +--- +title: Thing One +menus: + main: + parent: Things + weight: 1 +--- + +Hey, it's a thing! diff --git a/content/things/two.html b/content/things/two.html new file mode 100644 index 0000000..5b6e6b2 --- /dev/null +++ b/content/things/two.html @@ -0,0 +1,9 @@ +--- +title: Thing Two +menus: + main: + parent: Things + weight: 2 +--- + +Hey, it's another thing! diff --git a/hugo.yaml b/hugo.yaml index f856e8b..1df1925 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -14,3 +14,6 @@ menus: - name: 'About' pageRef: '/about' weight: 30 + - name: 'Things' + pageRef: '/things' + weight: 40