src/Cms/TenantBundle/Resources/views/Dashboard/Settings/includes/navbar.html.twig line 1

Open in your IDE?
  1. {% embed '@ui/common/navbars/default.html.twig' with {
  2.     title: 'Settings'
  3. } %}
  4.     {% block items %}
  5.         {% include '@ui/common/navbars/items/default.html.twig' with {
  6.             text: 'Locale',
  7.             link: path('cms.tenant.dashboard.settings.locale'),
  8.             active: (app.request.attributes.get('_route') is same as('cms.tenant.dashboard.settings.locale'))
  9.         } %}
  10.         {% include '@ui/common/navbars/items/default.html.twig' with {
  11.             text: 'Content Variables',
  12.             link: path('cms.tenant.dashboard.settings.content_variables'),
  13.             active: (app.request.attributes.get('_route') is same as('cms.tenant.dashboard.settings.content_variables'))
  14.         } %}
  15.     {% endblock %}
  16. {% endembed %}