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.
12 lines
378 B
12 lines
378 B
<div class="{{ parent_div_classes }}"> |
|
{% for content in content_array %} |
|
{% if content is defined %} |
|
<span class="{{ content[0] }}"> |
|
{{ content[1] }} |
|
{% if content['extraSpan'] is defined %} |
|
: <span>{{ content['extraSpan'] }}</span> |
|
{% endif %} |
|
</span> |
|
{% endif %} |
|
{% endfor %} |
|
</div>
|
|
|