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.
14 lines
468 B
14 lines
468 B
{% load i18n cms_tags menu_tags cache %}
|
|
{{ children.count }}
|
|
{% if children|length > 1 %}
|
|
<ul class="list-unstyled">
|
|
{% for child in children %}
|
|
<li {% if child.selected %}class="active"{% endif %}>
|
|
<a href="{{ child.get_absolute_url }}"><span>{{ child.get_menu_title }}</span></a>
|
|
</li>
|
|
{% if class and forloop.last and not forloop.parentloop %}{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
{% static_placeholder 'footer_promo' %}
|
|
{% endif %} |