37 lines
787 B
Plaintext
37 lines
787 B
Plaintext
{% if current_person.properties.first_login == true %}
|
|
<script>
|
|
window.location.replace('/app');
|
|
</script>
|
|
{% endif %}
|
|
|
|
{% include "header" %}
|
|
{% include "sub_navigation" %}
|
|
<main class="np-main np-catalog np-subpage-container np-max-width">
|
|
|
|
{% include 'walmart-start_banners' %}
|
|
|
|
|
|
<div class="lps-wrapper">
|
|
{% for learning_path in learning_paths.enrolled %}
|
|
{% for category in learning_path.categories %}
|
|
{% if us_user_grow %}
|
|
{% if category.name == 'Walmart Start' %}
|
|
{% include "cards_learning_path" %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</main>
|
|
|
|
{% include "footer" %}
|
|
|
|
<style>
|
|
@media screen and (min-width: 768px) {
|
|
.np-card-content-description {
|
|
display: block;
|
|
}
|
|
}
|
|
</style> |