TripleSeat templates, along with Futuri (both for header and transcript updates). Create SCORM course node script. Added some todos as well.

This commit is contained in:
Norm Rasmussen
2024-03-07 16:15:01 -05:00
parent 48acea45ba
commit 3490b97063
208 changed files with 6578 additions and 164 deletions

View File

@ -0,0 +1,23 @@
<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>