templates/front/_blocks/menu_list.html.twig line 1

Open in your IDE?
  1. <ul class="col-md-12 col-sm-8 col-xs-12">
  2. {% for item in menu %}
  3. {% if item.type is defined %}
  4.     <li{% if item.class is defined%} class="{{item.class}}"{% endif %}>
  5. {% if item.type == "link" %}
  6.         <a href="{{ item.url }}" {% if item.target is defined%} target="{{ item.target }}"{% endif %}>{{ item.ancre|raw }}</a>
  7. {% endif %}
  8. {% if item.type == "text" %}
  9.         {{ item.text|raw }}
  10. {% endif %}
  11.     </li>
  12. {% endif %}
  13. {% endfor %}
  14. </ul>