{{ learning_path.name }}
{{ learning_path.description | strip_html }}
{{ learning_path.items.count }} resources
·
Contents
{% assign courses_index = 1 %}
{% for item in learning_path.items %}
{% assign course_desc = "" %}
{% assign course_length = "" %}
{% for course in courses %}
{% if course.id == item.id %}
{% assign course_desc = course.short_description %}
{% assign course_length = course.properties.course_length %}
{% endif %}
{% endfor %}
{% if item.course? %}
{% if learning_path.enrolled? and item.unlocked? %}
{% if item.completed? %}
{% else %}
{{courses_index}}
{% endif %}
{% if item.progress > 0 and item.progress < 100 %}
In progress
{% endif %}
{{ item.name }}
{{course_desc}}
{{course_length}}
{{courses_index}}
{{ item.name }}
{{course_desc}}
{{course_length}}
New