2024-06-11 09:54:12 +00:00
|
|
|
<div class="{{ content.css_classes }} mode-{{ mode }}">
|
2024-04-12 19:22:00 +00:00
|
|
|
|
2024-05-13 02:52:45 +00:00
|
|
|
{% if content.pagination %}
|
|
|
|
{{ content.pagination.render() }}
|
|
|
|
{% endif %}
|
|
|
|
|
2024-06-11 09:54:12 +00:00
|
|
|
{% if content.items|length == 0 %}
|
|
|
|
<span class="noitems">No items in this listing.</span>
|
|
|
|
{% else %}
|
|
|
|
<ul>
|
|
|
|
{% for item in content.items %}
|
|
|
|
<li>{{ item.render(content.mode) }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
2024-05-13 02:52:45 +00:00
|
|
|
|
|
|
|
{% if content.pagination %}
|
|
|
|
{{ content.pagination.render() }}
|
|
|
|
{% endif %}
|
|
|
|
|
2024-04-12 19:22:00 +00:00
|
|
|
</div>
|