{% if course.full_description and course.full_description.size > 0 %}
{% include "course_description" %}
{% endif %}
{% if course.instructors and course.instructors.any? %}
{% include "course_instructors" %}
{% endif %}
{% include "course_outline" %}
{% if course.events and course.events.any? %}
{% include "course_events" %}
{% endif %}
{% if course.enrolled? and course.started? %}
{% include "course_progress_and_cta" %}
{% else %}
{% include "course_cta_button" %}
{% endif %}