Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

Hide `Home` from navigation

Started by Muut Archive 11 years ago · 6 replies · 929 views
11 years ago

I'm using the woo template for testing and would like to make my woo template to look like how it is in the template maker's own site: http://www.styleshout.com/demo/?theme=woo
I mean not having a home menu entry in the navigation.

I wonder why is the home menu visible in the grav skeleton version, maybe they didn't find out neither how to hide it inside grav?

What I want is to switch the order of links in the navigation: modular page links to the beginning and the page links genereted from pages directory just after that. I could do this by editing the template file. Only that the {% for page in pages.children %} will not skip the home and the page onpage_menu: false in the modular.md doesn't hide it - guess it's not for that but what is for hiding a page's menu?

11 years ago

Just put some simple twig logic in the code that outputs the menu:

TWIG
{% if not page.home %} .. display menu item .. {% endif %}

Something like that.

11 years ago

Extremely new to this. How would I implement this logic to hide the current page from the navigation? including a screenshot of twig I’m working with Screen Shot 2015-10-30 at 12

Any help deeply appreciated

11 years ago

One way to do it would be to edit your css for the .active class so to hide it display:none for example.

9 years ago

Any other solution for @yscompton's problem? Hiding the active is not possible for me as I want to hide home from all pages.

The twig code I'm working with is basically same as @yscompton's.

TWIG

<ul class="nav navbar-nav navbar-right main-nav">
                {{ _self.loop(pages) }}
            </ul>
---
9 years ago

nevermind... looks like all I should do is to add a 'visibility: false' line in the pages' frontmatter.

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1344 9 years ago
Archive · by Muut Archive, 9 years ago
2 930 9 years ago
Archive · by Muut Archive, 9 years ago
2 4058 9 years ago
Archive · by Muut Archive, 9 years ago
1 2943 9 years ago
Archive · by Muut Archive, 9 years ago
3 1116 9 years ago