Removed a bunch of old/churned client files and updated some older clients that I haven't touched in a while. Lots of summer cleaning!

This commit is contained in:
Norm Rasmussen
2025-07-29 14:20:27 -04:00
parent 83267e5f86
commit a0b767b798
834 changed files with 1737 additions and 38944 deletions

View File

@ -0,0 +1,29 @@
{% 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-heading lang-fr">Formations</div>
<div class="hero-heading lang-jp">コース</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 class="hero-desc lang-fr">Découvrez toutes nos formations, classées en fonction de leur thème et de leur popularité. <br>Choisissez un sujet et maîtrisez peu à peu DeepL à la perfection.</div>
<div class="hero-desc lang-jp">全コースをここで確認できます。人気のコースやテーマ別にまとめられています。<br>テーマを選んでDeepLの活用方法をマスターしましょう。</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" %}