Tons of Solutions Engineering work done today for the rest of the CS team! Headway, Howard Hanna, Engels, Brighton, etc. Also completed Datasnippers auth flow and worked on Anthology's script. Cloned Anthology's courses (900..) and will clone Full Story on Monday.

This commit is contained in:
Norm Rasmussen
2024-01-05 17:07:59 -05:00
parent ce261975ca
commit a5fe4bd2c8
3157 changed files with 554269 additions and 16 deletions

View File

@ -0,0 +1,44 @@
<header class="wgs uk-z-4" >
<div class="uk-padding-horizontal uk-container uk-container-center uk-container-mod">
<nav class="uk-navbar" data-behavior="dropdown">
<ul class="uk-navbar-nav resize-nav course-top-nav">
<li>
<a href="/"> Home</a>
<a href="/my_dashboard"> My Dashboard</a>
<a href="/courses"> Course Catalog</a>
<a href="/learning_paths"> Learning Paths</a>
<a href="/training_events"> Trainings</a>
</li>
{% comment %}
{% for website_navigation in header_navigations %}
{% if website_navigation.path != "/training_events" %}
<li>
<a href="{{ website_navigation.path }}" {% if website_navigation.external? %} target="_blank" {% endif %}>
{% if website_navigation.path == "/courses" %}
Course Catalogue
{% else website.pa %}
{{ website_navigation.name }}
{% endif %}
</a>
</li>
{% endif %}
{% endfor %} {% endcomment %}
{% if current_person.signed_in? %}
<div></div>
{% else %}
<li><a href="{{ routes.log_in_path }}">{% t .log_in %}</a></li>
{% endif %}
{% comment %} {% include 'catalog_search_form' %} {% endcomment %}
</ul>
</nav>
</div>
</header>