{% if current_person.signed_in? %}
{% endif %}
{% if current_person.properties.show_welcome_message %}
Questions? We can help! Check out these optional resources to get the most out of the Spark Driver™ app.
{% endif %}
{% if courses.enrolled.any? %}
Featured
{% if features.learning_paths? %}
{% if enrolled_learning_paths.any? %}
{% for bundle in resource_bundles_to_display_array %}
{% assign bundle_name = bundle | strip | escape_once %}
{% for learning_path in enrolled_learning_paths %}
{% assign lp_title_downcase = learning_path.name | downcase | strip | escape_once %}
{% if lp_title_downcase contains bundle_name %}
{% include "cards_learning_path" with learning_path, enrolled_courses: enrolled_courses %}
{% break %}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% endif %}
{% for course in enrolled_courses %}
{% if course.properties.is_recommended_course == true %}
{% if course.properties.access_level == current_person.properties.access_level %}
{% include "cards_course" with course %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
All Categories
{% include "category_cards", school_categories: unique_school_categories %}