Issue #1982248 by Dragan Eror, marcus777: Markup for: views/templates/views-view-list.tpl.php.

8.0.x
webchick 2013-11-24 12:33:12 -08:00
parent 02a10b3161
commit 892744990d
1 changed files with 6 additions and 13 deletions

View File

@ -25,21 +25,14 @@
<h3>{{ title }}</h3>
{% endif %}
{% if list.type == 'ul' %}
<ul{{ list.attributes }}>
{% else %}
<ol{{ list.attributes }}>
{% endif %}
<{{ list.type }}{{ list.attributes }}>
{% for row in rows %}
<li{{ row.attributes }}>{{ row.content }}</li>
{% endfor %}
{% for row in rows %}
<li{{ row.attributes }}>{{ row.content }}</li>
{% endfor %}
</{{ list.type }}>
{% if list.type == 'ul' %}
</ul>
{% else %}
</ol>
{% endif %}
{% if attributes -%}
</div>
{% endif %}