Main navigation
[[menu.main]]
is the main loop, you can add your navigation item by copy and paste this line.name
attribute is for navigation item name.URL
is for the page url, just give the page name here, it will automatically add the base URL from your site. like if you want to give the about page url here, just typeabout
.weight
is for your navigation sorting, the smaller number weight will show first.- For
dropdown menu
you need to add another attribute calledhasChildren = true
, and removeURL
. then give 1 tab space for understanding hugo that is a children menu item. and paste this[[menu.main]]
again, then give theparent =
attribute here. parent name should be the dropdown item name, then give the pagename
andURL
. navBtn
is for navigation button that we provided in this theme, if you don’t want it, you can simply turn off this, you will seenavBtn
bottom of the main navigation, you can setenable = false
for hide this button, true is the default value, you can set button label and url here. this url is also like the navigation url, you just need to give the page name.