31 lines
980 B
Plaintext
31 lines
980 B
Plaintext
{% include "header" %}
|
|
{% include "course_version_outdated_alert", courses: courses.in_catalog %}
|
|
{% include 'hero_image', image_url: "https://s3.amazonaws.com/static.northpass.com/Terminus/terminus-LMS-learn-without-limits+Catalog+Header.jpg" %}
|
|
{% include "sub_navigation" %}
|
|
<main class="np-main np-catalog np-subpage-container np-max-width">
|
|
<div class="np-catalog-header-wrapper">
|
|
<div class="np-catalog-header">
|
|
<div class="np-resource-title">{{ catalog.headline }}</div>
|
|
<div class="np-resource-subtitle">{{ catalog.subheadline }}</div>
|
|
</div>
|
|
{% capture label %}{% t shared.filters.by_category %}{% endcapture %}
|
|
|
|
{% if courses.in_catalog.any? %}
|
|
{%
|
|
include "filter_dropdown",
|
|
filters: courses.filters,
|
|
key: "category_uuid",
|
|
label: label
|
|
%}
|
|
{% endif %}
|
|
</div>
|
|
{% include "courses_catalog" %}
|
|
</main>
|
|
{% include "footer" %}
|
|
|
|
<style>
|
|
.np-sub-navigation {
|
|
margin-bottom: 0;
|
|
}
|
|
</style>
|