Hey. I have a menu whose items are written in the config file.
As soon as I added the blog section, this section itself appeared in the menu. How to remove it from there?
{{- $currentPage := . -}}
{{ range .Site.Menus.main -}}
<li class="header_menu_item {{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}">
<a class="{{ .Pre }}" target="{{ .Post }}" href="{{ .URL | relLangURL }}">{{ .Name }}</a>
</li>
{{- end }}