packages/lit-dev-content/site/_includes/docs-nav.html
{% set navSection = eleventyNavigation.parent or eleventyNavigation.key %} {% set navSections = collections[collection] | eleventyNavigation -%} {# Is this page one of the first 3 sections? If so, expand first 3 sections #} {% if navSection == "Introduction" or navSection == 'Components' or navSection == 'Templates' %} {% set expandFirstThree = true %} {% endif %} {% for section in navSections %} {# Are any children in this section active? #} {% set sectionActive = false %} {% for child in section.children %} {% if child.url == page.url %} {% set sectionActive = true %} {% endif %} {% endfor %} {% if section.children | length %} {% set isFirstThree = section.order < 4 %} {% set shouldExpand = expandFirstThree and isFirstThree %} {% set shouldExpand = sectionActive or shouldExpand %}