{{ custom_page.headline }}
{% comment %}
{% t .headline, key: current_school.course_vocabulary %}
{% endcomment %}
{% if categories.enrolled.any? %}
{% assign all_categories = categories.enrolled | map: "name" %}
{% for enrolled_category in all_categories %}
{% if enrolled_category == "Past Webinars" %}
{% assign category_joined = enrolled_category | replace: " ", "-" | downcase %}
{{ enrolled_category }}
{% endif %}
{% endfor %}
{% endif %}
{% comment %} {% include "courses_index", class: "col-xs-12 col-sm-6 col-lg-4 np-stretch-content" %} {% endcomment %}
{% if courses.enrolled.any? %}
{% if categories.enrolled.any? %}
{% assign all_categories = categories.enrolled | map: "name" %}
{% for enrolled_category in all_categories %}
{% if enrolled_category == "Past Webinars" %}
{% assign category_joined = enrolled_category | replace: " ", "-" | downcase %}
{%
include "categories_carousel",
items: courses.enrolled,
topic: enrolled_category,
%}
{% endif %}
{% endfor %}
{% endif %}
{% else %}
Courses
{% capture message %}
{% t shared.zero_state.courses.index,
key: current_school.course_vocabulary
%}
{% endcapture %}
{% include "courses_zero_state", message: message %}
{% endif %}
{% include "footer" %}