Supplier templates.
This commit is contained in:
BIN
Custom_Templates/customer_templates/Walmart Supplier Prod/.DS_Store
vendored
Normal file
BIN
Custom_Templates/customer_templates/Walmart Supplier Prod/.DS_Store
vendored
Normal file
Binary file not shown.
@ -106,7 +106,6 @@
|
|||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
white-space: nowrap;
|
|
||||||
}
|
}
|
||||||
.heading {
|
.heading {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
{% assign available_categories = 'Introduction to Walmart,Onboarding,Merchandising,Supply Chain,Getting Paid' %}
|
{% assign available_categories = 'Introduction to Walmart,Onboarding,Merchandising,Supply Chain,Getting Paid' %}
|
||||||
{% assign uniq_courses = '' %}
|
{% assign uniq_courses = '' %}
|
||||||
|
{% assign sorted_learning_paths = learning_paths.available | sort: "name" %}
|
||||||
|
|
||||||
<div class="welcome-courses-wrapper">
|
<div class="welcome-courses-wrapper">
|
||||||
<div class="category-courses-wrapper">
|
<div class="category-courses-wrapper">
|
||||||
@ -12,7 +13,7 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="category-courses-container inactive">
|
<div class="category-courses-container inactive">
|
||||||
{% for learning_path in learning_paths.available %}
|
{% for learning_path in sorted_learning_paths %}
|
||||||
{% for category in learning_path.categories %}
|
{% for category in learning_path.categories %}
|
||||||
{% if category.name == 'Introduction to Walmart'%}
|
{% if category.name == 'Introduction to Walmart'%}
|
||||||
{% unless uniq_courses contains learning_path.name %}
|
{% unless uniq_courses contains learning_path.name %}
|
||||||
@ -34,12 +35,13 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="category-courses-container inactive">
|
<div class="category-courses-container inactive">
|
||||||
{% for learning_path in learning_paths.available %}
|
{% assign uniq_courses = "" %}
|
||||||
|
{% for learning_path in sorted_learning_paths %}
|
||||||
{% for category in learning_path.categories %}
|
{% for category in learning_path.categories %}
|
||||||
{% if category.name == 'Onboarding'%}
|
{% if category.name == 'Onboarding' %}
|
||||||
{% unless uniq_courses contains learning_path.name %}
|
{% unless uniq_courses contains learning_path.name %}
|
||||||
{% include 'cards_learning_paths_square' %}
|
{% include 'cards_learning_paths_square' %}
|
||||||
{% assign uniq_courses = uniq_courses | append: learning_path.name %}
|
{% assign uniq_courses = uniq_courses | append: learning_path.name | append: "," %}
|
||||||
{% endunless %}
|
{% endunless %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
@ -56,7 +58,7 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="category-courses-container inactive">
|
<div class="category-courses-container inactive">
|
||||||
{% for learning_path in learning_paths.available %}
|
{% for learning_path in sorted_learning_paths %}
|
||||||
{% for category in learning_path.categories %}
|
{% for category in learning_path.categories %}
|
||||||
{% if category.name == 'Merchandising'%}
|
{% if category.name == 'Merchandising'%}
|
||||||
{% unless uniq_courses contains learning_path.name %}
|
{% unless uniq_courses contains learning_path.name %}
|
||||||
@ -78,7 +80,7 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="category-courses-container inactive">
|
<div class="category-courses-container inactive">
|
||||||
{% for learning_path in learning_paths.available %}
|
{% for learning_path in sorted_learning_paths %}
|
||||||
{% for category in learning_path.categories %}
|
{% for category in learning_path.categories %}
|
||||||
{% if category.name == 'Supply Chain'%}
|
{% if category.name == 'Supply Chain'%}
|
||||||
{% unless uniq_courses contains learning_path.name %}
|
{% unless uniq_courses contains learning_path.name %}
|
||||||
@ -100,7 +102,7 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="category-courses-container inactive">
|
<div class="category-courses-container inactive">
|
||||||
{% for learning_path in learning_paths.available %}
|
{% for learning_path in sorted_learning_paths %}
|
||||||
{% for category in learning_path.categories %}
|
{% for category in learning_path.categories %}
|
||||||
{% if category.name == 'Getting Paid'%}
|
{% if category.name == 'Getting Paid'%}
|
||||||
{% unless uniq_courses contains learning_path.name %}
|
{% unless uniq_courses contains learning_path.name %}
|
||||||
|
|||||||
@ -114,7 +114,7 @@
|
|||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:768px) {
|
@media (min-width:768px) {
|
||||||
.progress-ring-wrapper {
|
.progress-ring-wrapper {
|
||||||
padding: 1.5rem 0.4rem 1rem 0.4rem;
|
padding: 1.5rem 0.4rem 1rem 0.4rem;
|
||||||
|
|||||||
@ -5,11 +5,9 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% if current_person.properties.modal %}
|
|
||||||
{% if current_person.properties.first_login %}
|
{% if current_person.properties.first_login %}
|
||||||
{% include 'modal' %}
|
{% include 'modal' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% include "header" %}
|
{% include "header" %}
|
||||||
{% include "course_version_outdated_alert", courses: courses.featured %}
|
{% include "course_version_outdated_alert", courses: courses.featured %}
|
||||||
|
|||||||
Reference in New Issue
Block a user