Files
Gainsight/Custom_Templates/customer_templates/DeepL/learning_paths.html.liquid

31 lines
1.4 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% assign enrolled_lp = 0 %}
{% for learning_path in learning_paths.enrolled %}
{% if learning_path.progress > 0 %}
{% assign enrolled_lp = enrolled_lp | plus: 1 %}
{% endif %}
{% endfor %}
{% include "header" %}
<div class="page-hero-container">
<div class="hero-text-wrapper">
<div class="hero-heading lang-en">Learning paths</div>
<div class="hero-heading lang-de">Lernpfade</div>
<div class="hero-heading lang-jp">学習プログラム</div>
<div class="hero-heading lang-fr">Parcours dapprentissage</div>
<div class="hero-desc lang-en">The guides most relevant to you, all in one place.<br> Pick a use case and start exploring DeepL.</div>
<div class="hero-desc lang-de">Die für Sie wichtigsten Leitfäden an einem Ort. <br>Wählen Sie einen Anwendungsfall und entdecken Sie DeepL.</div>
<div class="hero-desc lang-jp">必要な動画や説明をテーマごとにまとめました。自分に合ったユースケースを選びDeepLの使い方を学びましょう。</div>
<div class="hero-desc lang-fr">Les guides les plus pertinents pour vous, dans un seul et même endroit. Choisissez un cas dutilisation et commencez à explorer DeepL.</div>
</div>
</div>
<div class="np-homepage-featured np-max-width page-spacing">
{% if enrolled_lp > 0 %}
<section>
{% include "your_lp" %}
</section>
{% endif %}
<section>
{% include "all_lp" %}
</section>
</div>
{% include "footer" %}