{% macro generate_single_item(item) %} {% endmacro %} {% macro generate_item_with_children(item) %} {% endmacro %} {% macro generate_navbar(content_items) %} {% for item in all_content %} {% if item|get_type == 'Feed' %} {% continue %} {% endif %} {% if item|get_type == 'Tearoff' %} {% continue %} {% endif %} {% if item.children|length == 0 %} {{ generate_single_item(item) }} {% else %} {{ generate_item_with_children(item) }} {% endif %} {% endfor %} {% endmacro %}