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:
@ -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>
|
||||
Reference in New Issue
Block a user