Files
aircox/cms/templates/cms/section_list.html
2015-10-02 15:31:57 +02:00

23 lines
461 B
HTML

{% extends "cms/section.html" %}
{% load thumbnail %}
{% block section_content %}
<ul style="padding:0; margin:0">
{% for item in object_list %}
<li>
{% if use_icons and item.icon %}
<img src="{% thumbnail item.icon icon_size crop %}" class="icon">
{% endif %}
{{ item.title }}
{% if item.text %}
<small>{{ item.text }}</small>
{% endif %}
</li>
{% endfor %}
</ul>
{% endblock %}