Skip to content

Instantly share code, notes, and snippets.

@VadimBrodsky
Last active December 22, 2015 21:07
Show Gist options
  • Save VadimBrodsky/ced1446ac3275d6aea06 to your computer and use it in GitHub Desktop.
Save VadimBrodsky/ced1446ac3275d6aea06 to your computer and use it in GitHub Desktop.
Craft Snippets

Source -- http://craftcms.stackexchange.com/a/6996

Untested, but you should be able to do this by using the merge filter in Twig to join the two results together.

Get the top level 'landing page' for this section:

{% set landingPage = entry.getAncestors().level(1) %}

Get the descendants for this section:

{% set childPages = entry.getAncestors().level(1).getDescendants() %}

Merge the two results together:

{% set sectionPages = [ landingPage ]|merge(childPages) %}

Now create the navigation for the section using the sectionPages variable:

<nav>
    <ul>
        {% nav page in sectionPages %}
            <li>
                {{ page.getLink() }}
                    {% ifchildren %}
                    <ul>
                        {% children %}
                    </ul>
                {% endifchildren %}
            </li>
        {% endnav %}
    </ul>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment