{{ homepage.featured_courses_headline }}
{{ homepage.featured_courses_subheadline }}
{% assign in_progress_count = 0 %}
{% assign max_courses = 3 %}
{% for course in courses.enrolled %}
{% if course.started? and course.completed? == false and in_progress_count < max_courses %}
{% if in_progress_count == 0 %}
{% endif %}
{% include "cards_course" with course %}
{% assign in_progress_count = in_progress_count | plus: 1 %}
{% endif %}
{% endfor %}
{% if in_progress_count > 0 %}
{% endif %}
{% if features.learning_paths? %}
{% assign in_progress_paths_count = 0 %}
{% assign max_paths = 4 %}
{% for learning_path in learning_paths.enrolled %}
{% if learning_path.enrolled? and learning_path.completed? == false and learning_path.progress > 0 and in_progress_paths_count < max_paths %}
{% if in_progress_paths_count == 0 %}
{% endif %}
{% include "cards_learning_path" with learning_path %}
{% assign in_progress_paths_count = in_progress_paths_count | plus: 1 %}
{% endif %}
{% endfor %}
{% endif %}
{% if in_progress_count == 0 and in_progress_paths_count == 0 %}
You don't have any lessons in progress yet. Explore a lesson or learning path to get started.
{% endif %}