mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
964 B
964 B
title | description | categories | keywords | action | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Weight | Returns the `weight` property of the given menu entry. |
|
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 site 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:
<ul>
{{ range .Site.Menus.main }}
{{ if le .Weight 42 }}
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
{{ end }}
{{ end }}
</ul>