{% assign isProgressHeaderOutput = false %}
{% assign isCoursesInprogress = false %}
{% for course in courses.in_catalog %}
{% if course.progress > 0 and course.progress < 100 %}
{% if isProgressHeaderOutput == false %}
Pick up where you left off
{% assign isProgressHeaderOutput = true %}
{% endif %}
{% include "cards_course" with course %}
{% assign isCoursesInprogress = true %}
{% endif %}
{% endfor %}