53 lines
2.1 KiB
Plaintext
53 lines
2.1 KiB
Plaintext
<nav class="np-sub-navigation">
|
|
<div class="np-sub-navigation-content">
|
|
{% for link in navigations.sub_navigation %}
|
|
{% unless link.label == 'Catalog' or link.label == 'Learning Paths' or link.label == 'Events' %}
|
|
<div class="np-sub-navigation-content-item {{ link.active_class }}">
|
|
<a class="np-sub-navigation-content-item-link" href="{{ link.url }}">
|
|
<i class="{{ link.icon }} np-button-color np-sub-navigation-content-item-icon"></i>
|
|
{{ link.label }}
|
|
</a>
|
|
<div class="np-sub-navigation-content-item-bar np-button-background-color"></div>
|
|
</div>
|
|
{% endunless %}
|
|
{% endfor %}
|
|
|
|
{% for link in navigations.sub_navigation %}
|
|
{% if link.label == 'Learning Paths' %}
|
|
<div class="np-sub-navigation-content-item {{ link.active_class }}">
|
|
<a class="np-sub-navigation-content-item-link" href="{{ link.url }}">
|
|
<i class="{{ link.icon }} np-button-color np-sub-navigation-content-item-icon"></i>
|
|
{{ link.label }}
|
|
</a>
|
|
<div class="np-sub-navigation-content-item-bar np-button-background-color"></div>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% for link in navigations.sub_navigation %}
|
|
{% if link.label == 'Catalog' %}
|
|
{% assign render = true %}
|
|
{% for group in current_person.groups %}
|
|
{% if group.id == '4919c56f-cda3-4f31-911c-f092536a7e68' %}
|
|
{% assign render = false %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% if render %}
|
|
<div class="np-sub-navigation-content-item {{ link.active_class }}">
|
|
<a class="np-sub-navigation-content-item-link" href="{{ link.url }}">
|
|
<i class="{{ link.icon }} np-button-color np-sub-navigation-content-item-icon"></i>
|
|
{{ link.label }}
|
|
</a>
|
|
<div class="np-sub-navigation-content-item-bar np-button-background-color"></div>
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</nav>
|
|
<style>
|
|
.bqUfwS{
|
|
display:none !important;
|
|
}
|
|
</style> |