From 6c55d4282e1e460afb56a19e70058f05d738e85d Mon Sep 17 00:00:00 2001
From: Kris - The Coding Unicorn <47773700+guidemetothemoon@users.noreply.github.com>
Date: Sat, 23 Apr 2022 08:11:06 +0000
Subject: [PATCH] feat: added support for navigation menu dropdown (#344)

---
 exampleSite/config/_default/menus.en.toml |   21 ++++++++++++++++++++-
 1 files changed, 20 insertions(+), 1 deletions(-)

diff --git a/exampleSite/config/_default/menus.en.toml b/exampleSite/config/_default/menus.en.toml
index 856ae35..b5b361f 100644
--- a/exampleSite/config/_default/menus.en.toml
+++ b/exampleSite/config/_default/menus.en.toml
@@ -23,8 +23,27 @@
   url = "/about/"
 
   [[main]]
-  name = "Contact"
+  name = "Accomplishments"
   weight = 500
+  identifier = "accomplishments"
+
+  [[main]]
+  name = "Awards"
+  weight = 510
+  identifier = "awards"
+  url = "/awards/"
+  parent = "accomplishments"  
+
+  [[main]]
+  name = "Certifications"
+  weight = 520
+  identifier = "certifications"
+  url = "/certifications/"
+  parent = "accomplishments"
+
+  [[main]]
+  name = "Contact"
+  weight = 600
   identifier = "contact"
   url = "/contact/"
 

--
Gitblit v1.10.0