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.
 
 
 
 
 
 

10 lines
553 B

{% load cms_tags %}
{% for child in children|slice:":5" %}
<li class="{% if child.selected %}selected{% elif child.ancestor %}ancestor{% elif child.sibling %}sibling{% elif child.descendant %}descendant{% endif %}{% if forloop.last %} last{% endif %}">
{% if child.selected %}
{{ child.get_menu_title }}
{% else %}
<a href="{% if request.is_secure %}https{% else %}http{% endif %}://{{ request.get_host }}{{ child.get_absolute_url }}">{{ child.get_menu_title }}</a>
{% endif %}
</li>
{% endfor %}