{% comment %} skip-auth {% endcomment %} {% if current_person.signed_in? %} {% assign countComplete = 0 %} {% assign countInProgress = 0 %} {% assign countNotStarted = 0 %} {% assign countTotal = 0 | times: 1.0 %} {% for course in courses.enrolled %} {% assign countTotal = countTotal | plus: 1 %} {% if course.progress == 100 %} {% assign countComplete = countComplete | plus: 1 %} {% endif %} {% if course.progress > 0 and course.progress < 100 %} {% assign countInProgress=countInProgress | plus: 1 %} {% endif %} {% if course.progress==0 %} {% assign countNotStarted=countNotStarted | plus: 1 %} {% endif %} {% endfor %} {% endif %} {% assign view_more_counter = 0 %} {% include "header" %} {% unless current_person.signed_in? %} {% include 'welcome_hero' %} {% endunless %}