This is from draft, here is the preview
https://buqgamsd67u9gkve-81817796888.shopifypreview.com
source code is this:
{% comment %}
Renders a standard dropdown style menu for the header.
Usage:
{% render ‘header-dropdown-menu’ %}
{% endcomment %}
{% for block in section.blocks %}
{% if block.type == ‘drop’ %}
-
{%- for link in block.settings.menu_2.links -%}
-
{%- if link.links != blank -%}
{%- else -%} {{- link.title | escape -}} {%- endif -%}
{{- link.title | escape -}} {% render 'icon-caret' %}
-
{%- for childlink in link.links -%}
-
{%- if childlink.links == blank -%}
{{ childlink.title | escape }}
{%- else -%}
{%- endif -%}
{{ childlink.title | escape }} {% render 'icon-caret' %}
-
{%- for grandchildlink in childlink.links -%}
- {{ grandchildlink.title | escape }} {%- endfor -%}
{%- endfor -%}
{%- endfor -%}
-
{%- if childlink.links == blank -%}
{{ childlink.title | escape }}
{%- else -%}
{% endif %}
{% endfor %}