2024-01-29 17:03:30 -05:00
|
|
|
{% assign omni = false %}
|
|
|
|
|
{% assign core = false %}
|
|
|
|
|
|
|
|
|
|
{% if current_person.signed_in? %}
|
|
|
|
|
{% for group in current_person.groups %}
|
|
|
|
|
{% if group.id == '9daeef1e-bd6c-47da-a343-ef772ba88300' %}
|
|
|
|
|
{% assign core = true %}
|
|
|
|
|
{% elsif group.id == 'afa31e2d-646e-4b7e-b65e-c426dc30ec5c' %}
|
|
|
|
|
{% assign omni = true %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
2024-01-19 19:47:00 -05:00
|
|
|
{% include "header" %}
|
|
|
|
|
<div class="hero-homepage">
|
2024-01-23 16:54:25 -05:00
|
|
|
<div class="np-max-width">
|
2024-02-05 17:48:39 -05:00
|
|
|
<div class="hero-text">Learning Paths</div>
|
|
|
|
|
<div class="hero-subheading">Explore curated learning paths tailored to your function and role.</div>
|
2024-01-23 16:54:25 -05:00
|
|
|
</div>
|
2024-01-19 19:47:00 -05:00
|
|
|
</div>
|
2024-02-05 17:48:39 -05:00
|
|
|
<main class="np-main np-learning-paths np-subpage-container catalog-container np-max-width">
|
2024-01-29 17:03:30 -05:00
|
|
|
<div class="filter-container">
|
2024-02-05 17:48:39 -05:00
|
|
|
{% include 'filters_lp' %}
|
2024-01-29 17:03:30 -05:00
|
|
|
</div>
|
2024-01-19 19:47:00 -05:00
|
|
|
<div class="catalog-content-wrapper">
|
2024-02-05 17:48:39 -05:00
|
|
|
<div class="np-learning-paths-main np-max-width">
|
|
|
|
|
{% include "learning_paths_index", items: learning_paths.available %}
|
|
|
|
|
</div>
|
2024-01-19 19:47:00 -05:00
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
{% include "footer" %}
|
|
|
|
|
|
|
|
|
|
<style>
|
2024-02-05 17:48:39 -05:00
|
|
|
.catalog-container {
|
2024-01-29 17:03:30 -05:00
|
|
|
display: flex;
|
|
|
|
|
gap: 20px;
|
2024-01-31 17:32:20 -05:00
|
|
|
padding: 5% 20px;
|
2024-01-29 17:03:30 -05:00
|
|
|
}
|
|
|
|
|
.filter-container {
|
|
|
|
|
width: 25%;
|
|
|
|
|
margin: 10px;
|
|
|
|
|
}
|
2024-01-19 19:47:00 -05:00
|
|
|
.catalog-content-wrapper {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 20px;
|
2024-01-29 17:03:30 -05:00
|
|
|
width: 75%;
|
2024-01-19 19:47:00 -05:00
|
|
|
}
|
|
|
|
|
.filters-container {
|
|
|
|
|
width: 20%;
|
|
|
|
|
border: 3px solid #002e6e;
|
|
|
|
|
border-radius: 25px;
|
|
|
|
|
}
|
|
|
|
|
.catalog-courses-container {
|
2024-01-23 16:54:25 -05:00
|
|
|
width: 100%;
|
2024-01-19 19:47:00 -05:00
|
|
|
}
|
2024-01-29 17:03:30 -05:00
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
|
.catalog-container {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.filter-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.catalog-content-wrapper {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-05 17:48:39 -05:00
|
|
|
</style>
|