{% assign content_counter = 0 %} {% for course in courses.in_catalog %} {% for category in course.categories %} {% if category.name == 'Recommended' %} {% assign content_counter = content_counter | plus: 1 %} {% endif %} {% endfor %} {% endfor %} {% for learning_path in learning_paths.available %} {% for category in learning_path.categories %} {% if category.name == 'Recommended' %} {% assign content_counter = content_counter | plus: 1 %} {% endif %} {% endfor %} {% endfor %}