<ul class="col-md-12 col-sm-8 col-xs-12">
{% for item in menu %}
{% if item.type is defined %}
<li{% if item.class is defined%} class="{{item.class}}"{% endif %}>
{% if item.type == "link" %}
<a href="{{ item.url }}" {% if item.target is defined%} target="{{ item.target }}"{% endif %}>{{ item.ancre|raw }}</a>
{% endif %}
{% if item.type == "text" %}
{{ item.text|raw }}
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>