1
0
Fork 0
hugo/docs/content/en/methods/menu-entry/Title.md

560 B

title description categories keywords action
Title Returns the `title` property of the given menu entry.
related returnType signatures
string
MENUENTRY.Title

The Title method returns the title property of the given menu entry. If the title is not defined, and the menu entry resolves to a page, the Title returns the page Title.

<ul>
  {{ range .Site.Menus.main }}
    <li><a href="{{ .URL }}" title="{{ .Title }}>{{ .Name }}</a></li>
  {{ end }}
</ul>