modules/XC/CrispWhiteSkin/templates/web/customer/modules/CDev/SimpleCMS/footer_menu.twig line 1

Open in your IDE?
  1. {##
  2.  # Top menu
  3.  #}
  4. <div id="secondary-menu" class="clearfix">
  5.   <ul class="footer-menu">
  6.     {% for i, item in this.getItems() %}
  7.       {% if this.isLevelUp(item.depth) %}
  8.         <ul>
  9.       {% else %}
  10.         {% if not this.isFirstElement() %}
  11.           </li>
  12.         {% endif %}
  13.       {% endif %}
  14.       {{ this.closeMenuList(item.depth)|raw }}
  15.       <li {{ this.displayItemClass(i, item)|raw }}>
  16.         {% if item.url %}
  17.           <a href="{{ item.url }}" {% if item.active %}class="active"{% endif %}>{{ item.label }}</a>
  18.         {% else %}
  19.           <h3 class="head-h4 footer-title">{{ item.label }}</h3>
  20.         {% endif %}
  21.         {% endfor %}
  22.       </li>
  23.       {{ this.closeMenuList()|raw }}
  24.     </ul>
  25. </div>