remove dropdown menu from services tab

This commit is contained in:
meaz 2021-12-27 11:13:45 +01:00
parent 82333111c6
commit cfeb142970
Signed by: meaz
GPG Key ID: CD7A47B2F1ED43B4
1 changed files with 3 additions and 0 deletions

View File

@ -4,11 +4,14 @@
{% set current_page = (p.active or p.activeChild) ? 'active' : '' %}
<li class="dropdown {{ current_page }}">
<a href="{{ p.url }}">{{ p.menu }}</a>
{# The following lines are commented out, but can served
to get a dropdown menu based on content
{% if p.children.count > 0 %}
<ul class="dropdown-content">
{{ _self.loop(p) }}
</ul>
{% endif %}
#}
</li>
{% endfor %}
{% endmacro %}