Title here
Summary here
Define navigation in config/_default/menus/.
In a Thulite project:
menus.en.toml defines English menusmenus.nl.toml defines Dutch menusmenus.<lang>.toml for additional languages when neededmain: top navigationsocial: social/profile linksfooter: footer linksEntries are ordered by weight (lower first).
Add a top-level item and a child item in menus.en.toml:
[[main]]
name = "Documentation"
url = "https://docs.thulite.io/"
weight = 10
[[main]]
identifier = "thulite-docs"
name = "Thulite"
url = "https://docs.thulite.io/"
parent = "Documentation"
weight = 11Use pageRef for internal pages and url for external links.
Hugo guide to defining and working with menu entries.
How to translate menus for multilingual sites.
Template reference for rendering menus in layouts.