Custom Templates for DeepL backed up and EmailMonkey. GS University was also re-downloaded. Then small scripts updated like for Chubb.

This commit is contained in:
Norm Rasmussen
2025-02-25 17:01:36 -05:00
parent 74d46e88f4
commit a62a76f5d1
288 changed files with 9886 additions and 152 deletions

View File

@ -0,0 +1,26 @@
{% 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" %}