You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
331 B
11 lines
331 B
2 years ago
|
<div class="toolbar {{ parent_div_classes }}">
|
||
|
{% for content in content_array %}
|
||
|
{% if content is defined %}
|
||
|
<div class="{{ content[0] }}">
|
||
|
{{ content['image'] is defined ? content['image']|raw }}
|
||
|
<span>{{ content[1] }}</span>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</div>
|