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
550 B
14 lines
550 B
{% load i18n menu_tags cache %}
|
|
{{ children.count }}
|
|
{% if children|length > 1 %}
|
|
<h4 class="header-menu-font">{% trans 'Our Services' %}</h4>
|
|
<div class="background-line-pattern"></div>
|
|
<ul class="list-unstyled list-inline header-menu header-menu-font">
|
|
{% 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>
|
|
{% endif %} |