Files
Gainsight/Custom_Templates/customer_templates/G2/_sub_navigation.html.liquid

23 lines
921 B
Plaintext

<nav class="np-sub-navigation">
<div class="np-sub-navigation-content">
{% for link in navigations.sub_navigation %}
{% comment %} {% unless link.label == 'Learning Paths' %} {% endunless %} The End Unless usually goes right above
the endfor, on line 7.{% endcomment %}
<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>
{% endfor %}
</div>
</nav>
{% if current_school.properties.show_office_hours_banner == true %}
<div class="np-alert" >
{{ current_school.properties.office_hours_banner }}
</div>
{% endif %}
{% include "badges" %}