How to set dynamic multilevel menu? I have no problem with flat (taking sidebar example) but i don’t have idea how add pages as a children in menu (and build this sublevel dinamicaly like 1st level).
Example:
pages/about/_index.md (title = “about”)
pages/about/something_else.md
I use it to list this section as index for children pages (list.html) and then i want to set this pages as children in dropdown menu where _index.md is parent:
<li>
<a>About</a>
<ul class="dropdown">
<li><a>Something Else</a></li>
</ul>
</li>
in something_else.md how can I assign parent?
menu:
main:
parent: "_index.md" // <- here I don't know what must be...
P.S.
I know how to set it in config.toml but i want it to be dynamic or configurable in content .md - using example from docs with menu: main: … throws error in this case and even setting manualy in config is not enough because of the lacking active class (hugo don’t see list page in if condition: $currentPage.HasMenuCurrent “main”).