{% block stylesfirst %}{% endblock %}
{% block styles %}{% endblock %}
John Ducky
Member
My Account
Settings
Logout
{% set maxSubmenuItemY = 8 %} {% for menuItem in horizontalMenuItems %} {% if not menuItem.isTitle %}
{{menuItem.name}}
{% if menuItem.submenu.length > 0 %}
{% for sub in menuItem.submenu %} {% if loop.index % maxSubmenuItemY == 1 %}
{% endif %}
{{ sub.name }}
{% if sub.submenu.length > 0 %}
{% for subsub in sub.submenu %}
{{ subsub.name }}
{% endfor %}
{% endif %}
{% if (loop.index % maxSubmenuItemY == 0) or (loop.last) %}
{% endif %} {% endfor %}
{% endif %}
{% endif %} {% endfor %}
{% block content %}{% endblock %}
{% if isDev %} {% else %} {% endif %} {% block js %}{% endblock %}