You are here

owl-views.html.twig in Multipurpose Corporate Profile 8

{% if attributes -%}
<div{{ attributes }}>
    {% endif %}
    {% if title %}
        <h3>{{ title }}</h3>
    {% endif %}

    {% for row in rows %}
        <div{{ row.attributes }}>{{ row.content }}</div>
    {% endfor %}


{% if attributes -%}
    </div>
{% endif %}

File

modules/contrib/owl/templates/owl-views.html.twig
View source
  1. {% if attributes -%}
  2. <div{{ attributes }}>
  3. {% endif %}
  4. {% if title %}
  5. <h3>{{ title }}</h3>
  6. {% endif %}
  7. {% for row in rows %}
  8. <div{{ row.attributes }}>{{ row.content }}</div>
  9. {% endfor %}
  10. {% if attributes -%}
  11. </div>
  12. {% endif %}