From 20067fe0d65d463ad0a1c0fce5e1da3178f1bc32 Mon Sep 17 00:00:00 2001 From: "Evan G." Date: Wed, 22 May 2024 17:27:25 -0500 Subject: [PATCH] Add Tags to Menu --- hugo.toml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/hugo.toml b/hugo.toml index 69b18d6..d88df9f 100644 --- a/hugo.toml +++ b/hugo.toml @@ -20,14 +20,19 @@ enableGitInfo= "true" name = "Home" url = "/" weight = 1 + [[menu.main]] + identifier = "guestbook" + name = "GuestBook" + url = "/guestbook/" + weight = 2 [[menu.main]] identifier = "about" name = "About" url = "/about/" weight = 3 [[menu.main]] - identifier = "guestbook" - name = "GuestBook" - url = "/guestbook/" - weight = 2 - + identifier = "tags" + name = "Tags" + url = "/tags/" + weight = 4 +