2022-09-16 15:43:56 -04:00
|
|
|
<nav class="np-sub-navigation">
|
|
|
|
|
<div class="np-sub-navigation-content">
|
|
|
|
|
{% for link in navigations.sub_navigation %}
|
2023-05-04 16:07:06 -04:00
|
|
|
{% comment %} {% unless link.label == 'Learning Paths' %} {% endunless %} The End Unless usually goes right above
|
|
|
|
|
the endfor, on line 7.{% endcomment %}
|
2022-09-16 15:43:56 -04:00
|
|
|
<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>
|
2024-05-10 16:39:37 -04:00
|
|
|
{% if current_school.properties.show_office_hours_banner == true %}
|
2024-06-24 17:00:18 -04:00
|
|
|
<div class="np-alert" style="background-color:#FF492C" >
|
2024-06-17 17:08:23 -04:00
|
|
|
{{ current_school.properties.office_hours_banner_html }}
|
2024-05-10 16:39:37 -04:00
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
2023-11-09 22:12:16 -05:00
|
|
|
|
|
|
|
|
{% include "badges" %}
|