I have menu defined in front matter and it works but picks the linktitle attribute not the name. Is there an issue or I am doing something wrong? What I see in menu that shows up is ‘Website title 2’ not Home.
Front matter example:
---
draft: false
menus: main
name: Home
title: Website title
linktitle: Website title 2
params:
author: xxxx
---
Partial:
{{- range site.Menus.main }}
<a href="{{ .URL }}">
{{ .Name }}
</a>
{{- end }}