Back to Hugo

Weight

docs/content/en/methods/menu-entry/Weight.md

0.161.1771 B
Original Source

If you define the menu entry automatically, the Weight method returns the page's Weight.

If you define the menu entry in front matter or in your project configuration, the Weight method returns the weight property, falling back to the page's Weight.

In this contrived example, we limit the number of menu entries based on weight:

go-html-template
<ul>
  {{ range .Site.Menus.main }}
    {{ if le .Weight 42 }}
      <li><a href="{{ .URL }}">{{ .Name }}</a></li>
    {{ end }}
  {{ end }}
</ul>