23 lines
1.2 KiB
Plaintext
23 lines
1.2 KiB
Plaintext
<nav class="np-sub-navigation">
|
|
<div class="np-sub-navigation-content">
|
|
{% for link in navigations.sub_navigation %}
|
|
{% if link.label == 'Dashboard' %}
|
|
<div class="np-sub-navigation-content-item scaled {{ link.active_class }}">
|
|
<a class="np-sub-navigation-content-item-link" href="{{ link.url }}">
|
|
{%- comment -%} <i class="{{ link.icon }} np-button-color np-sub-navigation-content-item-icon"></i> {%- endcomment -%}
|
|
My Courses
|
|
</a>
|
|
{%- comment -%} <div class="np-sub-navigation-content-item-bar np-button-background-color"></div> {%- endcomment -%}
|
|
</div>
|
|
{% else %}
|
|
<div class="np-sub-navigation-content-item scaled {{ link.active_class }}">
|
|
<a class="np-sub-navigation-content-item-link" href="{{ link.url }}">
|
|
{%- comment -%} <i class="{{ link.icon }} np-button-color np-sub-navigation-content-item-icon"></i> {%- endcomment -%}
|
|
{{ link.label }}
|
|
</a>
|
|
{%- comment -%} <div class="np-sub-navigation-content-item-bar np-button-background-color"></div> {%- endcomment -%}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</nav> |