forked from rc/aircox
29 lines
605 B
HTML
29 lines
605 B
HTML
{% extends "aircox_cms/section.html" %}
|
|
|
|
{% load thumbnail %}
|
|
|
|
{% block section_content %}
|
|
<ul style="padding:0; margin:0">
|
|
{% for item in object_list %}
|
|
<li>
|
|
{% if item.url %}
|
|
<a href="{{item.url}}">
|
|
{% endif %}
|
|
{% 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 %}
|
|
{% if item.url %}
|
|
</a>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|
|
|