src/CorporateTrainingBundle/Resources/views/homepage/component/navigation/nav-li.html.twig line 1

Open in your IDE?
  1. <li class="{% if subNavs %}nav-hover{% endif %}{% if siteNav|default(null) and siteNav|default(null) == nav.url %} active {% endif %}">
  2.   <a href="{% if nav.url and not editing %}{{ nav.url|navigation_url }}{% else %}javascript:;{% endif %}" {% if nav.isNewWin and not editing %}target="_blank"{% endif %}>{{ nav.name }} {% if subNavs %}<i class="es-icon es-icon-arrow-down arrow-hover-bottom" style="font-size: 12px"></i><i class="es-icon es-icon-shangjiantou arrow-hover-top" style="font-size: 12px"></i>{% endif %}</a>
  3.   {% if subNavs %}
  4.     <ul class="dropdown-menu" role="menu">
  5.       {% for subNav in subNavs %}
  6.         {% if subNav.isOpen %}
  7.           <li><a href="{{ subNav.url|navigation_url }}"  {% if subNav.isNewWin %}target="_blank"{% endif %}>{{ subNav.name }}</a></li>
  8.         {% endif %}
  9.       {% endfor %}
  10.     </ul>
  11.   {% endif %}
  12. </li>