{% load wagtailcore_tags %} {# First 4 items are shown #} {% for item in primarynav|slice:":4" %} {% with link=item.value %} {% endwith %} {% endfor %} {% if is_desktop %} {% else %} {# Add the rest of the menu for the mobile dropdown #} {% for item in primarynav|slice:"4:" %} {% with link=item.value %} {% endwith %} {% endfor %} {% endif %}