--- title: Limit description: Returns the given menu, limited to the first N entries. categories: [] keywords: [] action: related: [] returnType: navigation.Menu signatures: [MENU.Limit N] --- The `Limit` method returns the given menu, limited to the first N entries. Consider this menu definition: {{< code-toggle file=hugo >}} [[menus.main]] name = 'Services' pageRef = '/services' weight = 10 [[menus.main]] name = 'About' pageRef = '/about' weight = 20 [[menus.main]] name = 'Contact' pageRef = '/contact' weight = 30 {{< /code-toggle >}} To sort the entries by name, and limit to the first 2 entries: ```go-html-template ``` Hugo renders this to: ```html ```