Was hoping someone could assist me in selecting menus in a $.Site.GetPage manor, I need to list both tags and pages from a menu in a single area, not fussed on weight as of yet. How would I go about doing so?
Attempted the following…
{{ $pages := (.Site.Menus.tertiary.Menu).Pages }}
{{ $tags := ($.Site.GetPage "taxonomy" "tags").Pages }}
{{ range union $tags $pages }}
<li class="col-6"><a href="{{ .URL }}">{{ .Title }}</a></li>
{{ end }}
But I can’t seem to find a way I can pull .Pages from a menu, any ideas?