Logo
    {% for sidebarItem in sidebarItems %}{% if sidebarItem.isTitle %}
  • {{sidebarItem.name}}
  • {% else %}
  • {{sidebarItem.name}} {% if sidebarItem.submenu.length > 0 %}
      {% for sub in sidebarItem.submenu %}
    • {{ sub.name }} {% if sub.submenu.length > 0 %}
        {% for subsub in sub.submenu %}
      • {{ subsub.name }}
      • {% endfor %}
      {% endif %}
    • {% endfor %}
    {% endif %}
  • {% endif %}{% endfor %}