ui/twig/dashboards/default/header/nav.html.twig line 1

Open in your IDE?
  1. <ul class="cs-topbar-nav cs-topbar-nav-mini pull-left">
  2.     <li>
  3.         <a class="cs-console-sb-toggle" href="#">
  4.             <em class="fa fa-chevron-right"></em>
  5.         </a>
  6.     </li>
  7.     <li class="cs-topbar__li-product-dd">
  8.         <a class="dropdown-toggle" href="#" data-toggle="dropdown">
  9.             <em class="cs-topbar__icon fa fa-th"></em>
  10.             <span class="dropdown-toggle__text">Products</span>
  11.             <em class="fa fa-chevron-down"><span class="sr-only">Expand product links</span></em>
  12.         </a>
  13.         <ul class="dropdown-menu">
  14.             <li{% if 'default' is same as(navhighlight) %} class="active"{% endif %}>
  15.                 <a href="{{ path('cms.container.dashboard.dashboard.index') }}">
  16.                     Websites
  17.                 </a>
  18.             </li>
  19.             {% if cms.tenant.products.checkAnyFlag('NOTIFICATIONS__V2') %}
  20.                 <li{% if 'notifications2' is same as(navhighlight) %} class="active"{% endif %}>
  21.                     <a href="{{ path('app.notifications.dashboard.default.main') }}">
  22.                         Notifications
  23.                     </a>
  24.                 </li>
  25.             {% endif %}
  26.             <li{% if 'app' is same as(navhighlight) %} class="active"{% endif %}>
  27.                 <a href="{{ path('products.app.dashboard.default.main') }}">
  28.                     Mobile App
  29.                 </a>
  30.             </li>
  31.             <li{% if 'ada' is same as(navhighlight) %} class="active"{% endif %}>
  32.                 <a href="{{ path('products.ada.dashboard.default.main') }}">
  33.                     Accessibility
  34.                 </a>
  35.             </li>
  36.             <li{% if 'smm' is same as(navhighlight) %} class="active"{% endif %}>
  37.                 <a href="{{ path('products.smm.dashboard.default.main') }}">
  38.                     Social Media
  39.                 </a>
  40.             </li>
  41.             <li{% if 'system' is same as(navhighlight) %} class="active"{% endif %}>
  42.                 <a href="{{ path('platform.security.dashboard.profile.landing') }}">
  43.                     Settings
  44.                 </a>
  45.             </li>
  46.         </ul>
  47.     </li>
  48. </ul>
  49. <ul class="cs-topbar-nav cs-topbar-nav-full pull-left">
  50.     <li>
  51.         <a class="cs-console-sb-toggle" href="#">
  52.             <em class="cs-topbar__icon fa fa-chevron-left"></em>
  53.         </a>
  54.     </li>
  55.     <li{% if 'default' is same as(navhighlight) %} class="active"{% endif %}>
  56.         <a href="{{ path('cms.container.dashboard.dashboard.index') }}">
  57.             Websites
  58.         </a>
  59.     </li>
  60.     {% if cms.tenant.products.checkAnyFlag('NOTIFICATIONS__V2') %}
  61.         <li{% if 'notifications2' is same as(navhighlight) %} class="active"{% endif %}>
  62.             <a href="{{ path('app.notifications.dashboard.default.main') }}">
  63.                 Notifications
  64.             </a>
  65.         </li>
  66.     {% endif %}
  67.     <li{% if 'app' is same as(navhighlight) %} class="active"{% endif %}>
  68.         <a href="{{ path('products.app.dashboard.default.main') }}">
  69.             Mobile App
  70.         </a>
  71.     </li>
  72.     <li{% if 'ada' is same as(navhighlight) %} class="active"{% endif %}>
  73.         <a href="{{ path('products.ada.dashboard.default.main') }}">
  74.             Accessibility
  75.         </a>
  76.     </li>
  77.     <li{% if 'smm' is same as(navhighlight) %} class="active"{% endif %}>
  78.         <a href="{{ path('products.smm.dashboard.default.main') }}">
  79.             Social Media
  80.         </a>
  81.     </li>
  82. </ul>