2025-07-10 16:18:51 -04:00
|
|
|
{% assign new_person = true %}
|
|
|
|
|
{% for course in courses.enrolled %}
|
|
|
|
|
{% if course.started? %}
|
|
|
|
|
{% assign new_person = false %}
|
|
|
|
|
{% break %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endfor %}
|
2024-09-12 18:25:34 -04:00
|
|
|
|
|
|
|
|
{% include "header" %}
|
|
|
|
|
|
|
|
|
|
<main class="catalog">
|
2025-07-10 16:18:51 -04:00
|
|
|
{% if new_person %}
|
|
|
|
|
{% include 'banner_catalog_new_user' %}
|
|
|
|
|
{% else %}
|
|
|
|
|
{% include 'banner_catalog_existing_user' %}
|
|
|
|
|
{% endif %}
|
2024-09-12 18:25:34 -04:00
|
|
|
|
2025-07-10 16:18:51 -04:00
|
|
|
{% include "catalog_courses" %}
|
2024-09-12 18:25:34 -04:00
|
|
|
{% include "catalog_page_info" %}
|
2025-07-10 16:18:51 -04:00
|
|
|
{% include "opinions" background: '#fff'%}
|
2024-09-12 18:25:34 -04:00
|
|
|
{% include 'catalog_faq' %}
|
2025-07-10 16:18:51 -04:00
|
|
|
|
2024-09-12 18:25:34 -04:00
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
{% include "footer" %}
|
2025-07-10 16:18:51 -04:00
|
|
|
|