Skip to content

Commit

Permalink
SHOPBASE-16 Add back greatgrandchild silly goose
Browse files Browse the repository at this point in the history
  • Loading branch information
ChelseyRiewerTrellis committed Aug 8, 2024
1 parent 8576b03 commit dd47507
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions snippets/header-mega-menu.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,24 @@
{{ grandchildlink.title | escape }}
</a>
</li>
{%- if grandchildlink.links != blank -%}
<ul class="list-unstyled" role="list">
{%- for greatgrandchildlink in grandchildlink.links -%}
<li>
<a
id="HeaderMenu-{{ link.handle }}-{{ grandchildlink.handle }}-{{ greatgrandchildlink.handle }}"
href="{{ greatgrandchildlink.url }}"
class="mega-menu__link link{% if greatgrandchildlink.current %} mega-menu__link--active{% endif %}"
{% if greatgrandchildlink.current %}
aria-current="page"
{% endif %}
>
{{ greatgrandchildlink.title | escape }}
</a>
</li>
{%- endfor -%}
</ul>
{%- endif -%}
{%- endfor -%}
</ul>
{%- endif -%}
Expand Down

0 comments on commit dd47507

Please sign in to comment.