26 lines
881 B
Plaintext
26 lines
881 B
Plaintext
{% include "header" %}
|
|
<div class="np-homepage-hero">
|
|
<img class="np-homepage-hero-image" src="{{ homepage.artwork_url }}" />
|
|
</div>
|
|
{% include "course_version_outdated_alert", courses: courses.in_catalog %}
|
|
{% 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">{{ custom_page.headline }}</div>
|
|
<div class="np-resource-subtitle">{{ custom_page.subheadline }}</div>
|
|
</div>
|
|
</div>
|
|
{% for course in courses.enrolled %}
|
|
{% for category in course.categories %}
|
|
{% if category.name == "Instructor-Led" %}
|
|
<div class="row row-with-thumbnails">
|
|
{% include "cards_course" with course %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</main>
|
|
{% include "footer" %}
|