{% load i18n suit_menu suit_tags %}
{% get_menu request as menu %}
{% with suit_layout='layout'|suit_conf:request %}
{% if menu %}
{% for parent_item in menu %}
{% if not parent_item.align_right or suit_layout == 'vertical' %}
{% include 'suit/menu_item.html' %}
{% endif %}
{% endfor %}
{% endif %}
{% if menu.aligned_right_menu_items %}
{% for parent_item in menu.aligned_right_menu_items %}
{% include 'suit/menu_item.html' %}
{% endfor %}
{% endif %}
{% if suit_layout == 'horizontal' and menu and menu.active_parent_item %}
{% for child_item in menu.active_parent_item.children %}