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.
21 lines
933 B
21 lines
933 B
{% load i18n menu_tags cms_tags cache %}
|
|
|
|
{% if children|length > 1 %}
|
|
<h4 class="header-menu-font"><span class="header-menu-services">{% trans 'Our Services' %}</span> <span class="header-menu-contacts"><a href="{% page_url "about" %}">{% page_attribute "page_title" "about" %}</a></span></h4>
|
|
<div class="background-line-pattern"></div>
|
|
<ul class="list-unstyled list-inline header-menu header-menu-font {% if current_page.is_home %}main{% endif %}">
|
|
{% for child in children %}
|
|
<li {% if child.selected or child.ancestor %}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>
|
|
<ul class="list-unstyled list-inline header-menu-description">
|
|
{% for child in children %}
|
|
|
|
<li>{% page_attribute "page_title" child.id %}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endif %} |