ui/twig/common/dashboard/sidebar/editor/nav.html.twig line 1

Open in your IDE?
  1. {% set htmlId = _args.htmlId|default(null) %}
  2. {% set icon = _args.icon|default(null) %}
  3. {% set text = _args.text %}
  4. <li class="editor__side-nav-li">
  5.     <a class="editor__side-nav-link" href="#"{% if htmlId is not empty %} id="{{ htmlId }}"{% endif %}>
  6.         {% if icon is not empty %}
  7.             <em class="editor__side-nav-icon fa fa-{{ icon }}"></em>
  8.         {% endif %}
  9.         <span class="editor__side-nav-label">{{ text }}</span>
  10.     </a>
  11. </li>