Main Menu

Adding menu items in config.toml

Configure the main menu by editing the config.toml

# config.toml

[menu]
  [[menu.main]]
      name = "Work"
      url = "/work/"
      weight = 2

  [[menu.main]]
      name = "Buy Now"
      url = "https://www.zerostatic.io/theme/hugo-lever/"
      weight = 10

Adding menu items in a page front-matter

# content/en/pages/about.md
---
title: "About"
...
menu:
  main:
    weight: 5
    name: "About"
  footer_secondary:
    weight: 2
---