27 lines
596 B
Plaintext
27 lines
596 B
Plaintext
{% assign new_person = true %}
|
|
{% for course in courses.enrolled %}
|
|
{% if course.started? %}
|
|
{% assign new_person = false %}
|
|
{% break %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% include "header" %}
|
|
|
|
<main class="catalog">
|
|
{% if new_person %}
|
|
{% include 'banner_catalog_new_user' %}
|
|
{% else %}
|
|
{% include 'banner_catalog_existing_user' %}
|
|
{% endif %}
|
|
|
|
{% include "catalog_courses" %}
|
|
{% include "catalog_page_info" %}
|
|
{% include "opinions" background: '#fff'%}
|
|
{% include 'catalog_faq' %}
|
|
|
|
</main>
|
|
|
|
{% include "footer" %}
|
|
|