Darn, I forgot to ask:
- To show the frontmatter of the child modules below /home…
- And what you would like to see in the menu.
I’m guessing you wan to see “Home | Mis servicios | Blog” in the menu of every page.
Any way…
- In a modular page, if you want to see its siblings in the menu (Home | Mis servicios | Blog), you need to set
onpage_menu: false
in the header of the modular.
The default value isonpage_menu: true
, which means Quark will show the child modules in the menu. - Since the child modules are not visible in the onpage_menu of Home, I’m guessing you have set the following in the header of the child modules of Home:
visible: false
. This will cause the module not to be shown in the so-calledonpage_menu
of the modular.
As said before, don’t set properties visible
and routable
in the header of pages, unless you know what you are doing. Which is not currently the case…
In short:
- Set
onpage_menu: false
in header of each modular.md - Remove properties
visible
androutable
from each and every page.