+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_content_by_certificates.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_content_by_certificates.html.liquid
new file mode 100644
index 00000000..d347538f
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_content_by_certificates.html.liquid
@@ -0,0 +1,55 @@
+
+
+
+ {% for learning_path in learning_paths.available %}
+ {% if learning_path.has_certificate? %}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_homepage_basic_notstarted_courses.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_homepage_basic_notstarted_courses.html.liquid
new file mode 100644
index 00000000..56361fb6
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_homepage_basic_notstarted_courses.html.liquid
@@ -0,0 +1,186 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_homepage_inprogress_courses.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_homepage_inprogress_courses.html.liquid
new file mode 100644
index 00000000..c2abdd3f
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_homepage_inprogress_courses.html.liquid
@@ -0,0 +1,192 @@
+
+ Sorry! There is no quick learning content at the moment. Be sure to check back here later.
+
+
+
+ {% endif %}
+ {% else %}
+
+
+ Sorry! There is no quick learning content at the moment. Be sure to check back here later.
+
+
+
+ {% endif %}
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_homepage_quicklearn_courses.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_homepage_quicklearn_courses.html.liquid
new file mode 100644
index 00000000..fe91e781
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_homepage_quicklearn_courses.html.liquid
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_progress_tracker.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_progress_tracker.html.liquid
new file mode 100644
index 00000000..14efd69f
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_progress_tracker.html.liquid
@@ -0,0 +1,41 @@
+
+ Yikes! You don't have any learning Paths in progress.
+
+
+
+
+
+ {% endif %}
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_sub_navigation.html.liquid
index 1abf2c0e..9105c32a 100644
--- a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_sub_navigation.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_sub_navigation.html.liquid
@@ -1,3 +1,6 @@
+{% if basic_3p_user %}
+ {% include "basic_group_sub_navigation" %}
+{% else %}
+{% endif %}
+
+
+ You don't have any {{categorie_name}} training at this moment.
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/filtered-catalog.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/filtered-catalog.html.liquid
new file mode 100644
index 00000000..5c6052e9
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/filtered-catalog.html.liquid
@@ -0,0 +1,199 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.in_catalog %}
+{% include "sub_navigation" %}
+{% assign catnamefromurl = params['catname'] %}
+{% assign catnamefromurl = catnamefromurl | url_decode %}
+
+
+
+
{{ catnamefromurl }}
+
+
+
+
+
+
+
+
+
+
+
+ {% for category in sorted_categories %}
+ {% if category.name contains catnamefromurl %}
+ {% include "subcategorie_courses" categorie_fullname: category.name %}
+ {% endif %}
+ {% endfor %}
+
+
+
+
+
+{% include "footer" %}
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/homepage.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/homepage.html.liquid
index 2cef5398..909bbd08 100644
--- a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/homepage.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/homepage.html.liquid
@@ -77,9 +77,15 @@
{{ homepage.headline }}
-
- {{ homepage.subheadline }}
-
+ {% if basic_3p_user %}
+
+
+
+
+ {% else %}
+
+ {{ homepage.subheadline }}
+
- {% if basic_3p_user %}
- {% include "basic_group_sub_navigation" %}
- {% include "homepage_featured", items: enrolled_courses %}
- {% comment %}
- Homepage featured only looks for courses that have a certain property AND a category. We will need to change that.
- I think we can use the "ongoing" training section below for the inprogress courses section.
- {% endcomment %}
- {% else %}
- {% include "sub_navigation" %}
- {% include "homepage_featured", items: catalog_courses %}
- {% endif %}
-
-
-
- {% comment %} {% if features.training_events? %}
-
-
-
Upcoming Courses
-
- {% if training_events.available.any? %}
- {% for training_event in training_events.available limit:1 %}
- {% include "cards_training_event" with training_event %}
- {% endfor %}
-