My Paths
Learning Paths in which you're currently enrolled
Filter by:
{% assign lp_categories = '' | split: '' %}
{% for lp in learning_paths.enrolled %}
{% for cat in lp.categories %}
{% assign cat_name = cat.name | split: '!@#$%^&*()' %}
{% assign lp_categories = lp_categories | concat: cat_name %}
{% endfor %}
{% endfor %}
{% assign lp_categories = lp_categories | uniq %}
{% if features.learning_paths? %}
{% include "learning_paths_index", items: learning_paths.enrolled %}
{% endif %}