For menu entries associated with a page, the URL
method returns the page’s RelPermalink
, otherwise it returns the entry’s url
property.
对于与页面关联的菜单条目,该URL方法返回页面的RelPermalink,否则返回条目的url属性。
<ul>
{{ range .Site.Menus.main }}
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
{{ end }}
</ul>