{% for link in linklists[section.settings.main_linklist].links %} {%- assign child_list_handle = link.title | handleize -%} {% if linklists[child_list_handle].links != blank %}
  • {{ link.title }} {% include 'icon-chevron-down' %} {{ 'layout.navigation.expand' | t }}
      {% for childlink in linklists[child_list_handle].links %}
    • {{ childlink.title | escape }} {%- assign child_list_handle1 = childlink.title | handleize -%} {% if linklists[child_list_handle1].links != blank %}
        {% for childlink1 in linklists[child_list_handle1].links %}
      • {{ childlink1.title }}
      • {% endfor %}
      {% endif %}
    • {% endfor %}
  • {% else %}
  • {{ link.title }}
  • {% endif %} {% endfor %}