27 lines
996 B
Plaintext
27 lines
996 B
Plaintext
{% assign enrolled_courses = 0 %}
|
|
{% for course in courses.enrolled %}
|
|
{% if course.progress > 0 %}
|
|
{% assign enrolled_courses = enrolled_courses | plus: 1 %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% include "header" %}
|
|
<div class="page-hero-container">
|
|
<div class="hero-text-wrapper">
|
|
<div class="hero-heading lang-en">Courses</div>
|
|
<div class="hero-heading lang-de">Kurse</div>
|
|
<div class="hero-desc lang-en">The full collection of our courses, organized by theme and popularity.<br>Pick a topic and become a true DeepL expert.</div>
|
|
<div class="hero-desc lang-de">Die komplette Sammlung unserer Kurse, geordnet nach Themen und Beliebtheit.<br>Wählen Sie ein Thema und werden Sie ein echter DeepL Experte.</div>
|
|
</div>
|
|
</div>
|
|
<div class="np-homepage-featured np-max-width page-spacing">
|
|
{% if enrolled_courses > 0 %}
|
|
<section>
|
|
{% include "your_courses" %}
|
|
</section>
|
|
{% endif %}
|
|
<section>
|
|
{% include "all_courses" %}
|
|
</section>
|
|
</div>
|
|
{% include "footer" %}
|