{% 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 %}
{% if current_person.signed_in? %}
{% include "sub_navigation" %}
{% endif %}
{% if current_person.signed_in? %} {% include 'welcome_hero' %} {% include 'statistics' %}
{% include 'overview_video' %}
{% endif %} {% unless current_person.signed_in? %}
{% include 'learning_paths_collection' %}
{% include "course_collection_unlogged" %}
{% for course in courses.in_catalog %} {% if view_more_counter < 4%} {% assign view_more_counter = view_more_counter | plus: 1%}
{% include "cards_course" with course, class: "" %}
{% else %}
{% include "cards_course" with course, class: "" %}
{% endif%} {% endfor %} {% if view_more_counter >= 4%} {% endif %}
{% endunless %} {% if current_person.signed_in? %}
{% if features.learning_paths? %}
{% if learning_paths.enrolled.any? %} {% include "learning_paths_index_homepage", items: learning_paths.enrolled %} {% endif %}
{% include 'recent_course' %}
{% include 'dashboard_course_filter' %} {% include "course_collection" %}
{% for course in courses.enrolled %} {% if view_more_counter < 4 %} {% assign view_more_counter = view_more_counter | plus: 1%}
{% include "cards_course" with course, class: "" %}
{% else %}
{% include "cards_course" with course, class: "" %}
{% endif%} {% endfor %} {% if view_more_counter >= 4%} {% endif %}
{% endif %}
{% endif %}
{% include "footer" %}