{% assign is_skipped_category = false %} {% for cat in course.categories %} {% assign cat_name = cat.name | downcase %} {% if cat_name contains "podcast" or cat_name contains "document" or cat_name contains "publication" %} {% assign is_skipped_category = true %} {% endif %} {% endfor %} {% if course.properties.skip_course_cover_page or is_skipped_category %} {% if course.enrolled? %} {% else %} {% endif %} {% else %} {% include "header" %} {% include "course_desktop_view" %} {% include "course_mobile_view" %} {% include "footer" %} {% endif %}