{% extends 'forms/fields/select/selectize.html.twig' %}
{% block options %}
{{ parent() }}
{% if gantry.menu is not null %}
{% for group, items in gantry.menu.getGroupedItems() %}
{% if items|length %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}