23 lines
959 B
Plaintext
23 lines
959 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" style="background-color:#FF492C" >
|
|
{{ current_school.properties.office_hours_banner_html }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% include "badges" %}
|