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