{% if learning_paths.enrolled and learning_paths.enrolled.size > 0 %}
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 %}
All
{% for cat in lp_categories %}
{{cat}}
{% endfor %}
{% for learning_path in learning_paths.enrolled %}
{% include 'cards_learning_path_new' with learning_path %}
{% endfor %}
You haven't enrolled into any learning_paths yet.