Files
Gainsight/Custom_Templates/customer_templates/Walmart Supplier Mexico/homepage.html.liquid
2025-04-08 17:56:33 -04:00

50 lines
1.3 KiB
Plaintext

{% assign in_progress_courses = 0 %}
{% for course in courses.enrolled %}
{% if course.progress > 0 and course.progress < 100 %}
{% assign in_progress_courses = in_progress_courses | plus: 1 %}
{% endif %}
{% endfor %}
{% include "header" %}
{% include "course_version_outdated_alert", courses: courses.featured %}
<main class="np-main np-homepage">
<div class="np-homepage-hero">
<img class="homepage-hero-image"
src="https://s3.us-east-1.amazonaws.com/static.northpass.com/Walmart+Mexico/homepage-image-hero.jpg.png"
alt="{{ homepage.headline }}"
/>
</div>
<div class="np-max-width">
<section>
{% include 'welcome_section' %}
</section>
<section>
{% include 'mi_ruta_section' %}
</section>
<section>
{% include 'crete_con_walmart_section' %}
</section>
</div>
<div class="np-max-width">
<section>
{% include 'homepage_widget_and_events' %}
</section>
{% comment %} {% if in_progress_courses > 0 %}
<section>
{% include 'continue_learning' %}
</section>
{% endif %} {% endcomment %}
{% comment %} <section>
{% include 'catalog_categories' %}
</section> {% endcomment %}
<section>
{% include 'faq_section' %}
</section>
</div>
</main>
{% include "footer" %}