{% extends 'navigation/_layouts' %} {% import '_includes/forms' as forms %} {% import 'verbb-base/_macros' as macros %} {% requireAdmin %} {% set crumbs = [ { label: craft.navigation.getPluginName(), url: url('navigation/settings') }, { label: 'Settings' | t('app'), url: url('navigation/settings') } ] %} {% set navItems = { 'general': { title: 'General Settings' | t('navigation') }, } %} {% set selectedItem = 'general' %} {% set fullPageForm = true %} {% block sidebar %} {% endblock %} {% block blockContent %} {% for id, item in navItems %} {% if item.title is defined %}

{{ item.title }}

{% namespace 'settings' %} {% include 'navigation/settings/_panes/' ~ id ignore missing %} {% endnamespace %}
{% endif %} {% endfor %} {% endblock %}