2021-03-05 08:12:56 +00:00
|
|
|
{% for item in items if not item.viewBag.isHidden %}
|
|
|
|
|
{% if item.url %}
|
2021-03-10 09:06:43 +00:00
|
|
|
<a class="nav__inner-link {{ item.isActive ? 'active' : '' }}" href="{{ item.url }}" {{ item.viewBag.isExternal ? 'target="_blank"' }}>
|
2021-03-05 08:12:56 +00:00
|
|
|
{{ item.title }}
|
|
|
|
|
</a>
|
|
|
|
|
{% else %}
|
|
|
|
|
<span>{{ item.title }}</span>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
{% if item.items %}
|
|
|
|
|
<ul>{% partial __SELF__ ~ "::items" items=item.items %}</ul>
|
|
|
|
|
{% endif %}
|
2021-03-10 09:06:43 +00:00
|
|
|
|
|
|
|
|
{% endfor %}
|