diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_basic_group_homepage.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_basic_group_homepage.html.liquid
index 345bcb89..d0bd23bd 100644
--- a/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_basic_group_homepage.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Dev Copy/_basic_group_homepage.html.liquid
@@ -2,58 +2,136 @@
{% comment %}
This is where "include homepage_featured" is usually inserted in the regular homepage.
+ {% endcomment %}
-
-
-
-
-
- Continue Courses
-
-
-
-
-
- {% assign course_count = 0 %}
- {% for course in courses.enrolled %}
- {% assign course_count = course_count | plus: 1 %}
- {% include "cards_article" with course %}
- {% endfor %}
-
-
-
+{% assign enrolled_items = courses.enrolled %}
- {% if course_count == 0 %}
-
-
- Yikes! You're not enrolled in any courses at the moment. Be sure to check back here later.
-
-
![Yikes! You're not enrolled in any courses at the moment. Be sure to check back here later.]()
-
- {% endif %}
- {% else %}
-
-
- Yikes! There is no content at the moment. Be sure to check back here later.
-
-
![Yikes! There is no content at the moment. Be sure to check back here later.]()
-
- {% endif %}
+
- {% endcomment %}
+ {% if enrolled_items.size > 0 %}
+ {% assign new_courses_count = 0 %}
+
+
+ {% for course in enrolled_items %}
+ {% if course.properties.is_article_course == false %}
+ {% if course.started? == false %}
+ {% assign new_courses_count = new_courses_count | plus: 1 %}
+
+ {% include "cards_course_onging" with course %}
+
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+
+
+
+ {% if new_courses_count > 0 %}
+ {% comment %}
{% endcomment %}
+ {% comment %}
See more {% endcomment %}
+ {% comment %}
{% endcomment %}
+ {% else %}
+
+
+
+ Yikes! You don't have any new training at this moment.
+
+
![Yikes! You don't have any new training at this moment.]()
+ {% comment %}
{% endcomment %}
+ {% comment %}
Explore Catalog {% endcomment %}
+ {% comment %}
{% endcomment %}
+
+ {% endif %}
+ {% else %}
+
+
+ Yikes! You don't have any new training at this moment.
+
+
![Yikes! You don't have any new training at this moment.]()
+ {% comment %}
{% endcomment %}
+ {% comment %}
Explore Catalog {% endcomment %}
+ {% comment %}
{% endcomment %}
+
+ {% endif %}
+
+
+
+
+
+ Ongoing Training
+
+
+
+ {% if enrolled_items.size > 0 %}
+ {% assign ongoing_courses_count = 0 %}
+
+
+ {% for course in enrolled_items %}
+ {% if course.properties.is_article_course == false %}
+ {% if course.progress > 0 and course.progress < 100 %}
+ {% assign ongoing_courses_count = ongoing_courses_count | plus: 1 %}
+
+ {% include "cards_course_ongoing" with course %}
+
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+
+
+
+ {% if ongoing_courses_count > 0 %}
+ {% comment %}
{% endcomment %}
+ {% comment %}
See more {% endcomment %}
+ {% comment %}
{% endcomment %}
+ {% else %}
+
+
+
+ Yikes! You don't have any ongoing training at this moment.
+
+
![Yikes! You don't have any ongoing training at this moment.]()
+ {% comment %}
{% endcomment %}
+ {% comment %}
Explore Catalog {% endcomment %}
+ {% comment %}
{% endcomment %}
+
+ {% endif %}
+ {% else %}
+
+
+ Yikes! You don't have any ongoing training at this moment.
+
+
![Yikes! You don't have any ongoing training at this moment.]()
+ {% comment %}
{% endcomment %}
+ {% comment %}
Explore Catalog {% endcomment %}
+ {% comment %}
{% endcomment %}
+
+ {% endif %}
+
+
+
- {% comment %} {% include "ongoing_training", items: courses.enrolled %} {% endcomment %}
@@ -78,7 +156,7 @@
{% if lps_in_progress > 0 %}
{% endif %}
{% if lps_in_progress == 0 %}
@@ -96,54 +174,42 @@
- {% comment %} {% if features.training_events? %}
-
-
-
-
- {% if training_events.available.any? %}
- {% for training_event in training_events.available limit:1 %}
- {% include "cards_training_event" with training_event %}
- {% endfor %}
-
- {% else %}
- {% include "training_events_zero_state" %}
- {% endif %}
-
-
-
- {% endif %} {% endcomment %}
- {% include "ongoing_training", items: courses.enrolled %}
-
- {%- comment -%}
-
-
-
-
- {%- endcomment -%}
{% include "footer" %}
+{% if current_person.signed_in? %}
+ {% unless current_person.email contains "+preview" %}
+ {% if current_person.properties.first_time_user_popup_seen == false %}
+
+ {% elsif current_person.properties.first_time_user_popup_seen == true %}
+
+ {% else %}
+
+ {% endif %}
+ {% endunless %}
+{% endif %}
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_basic_group_homepage.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_basic_group_homepage.html.liquid
new file mode 100644
index 00000000..047fa9a1
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_basic_group_homepage.html.liquid
@@ -0,0 +1,346 @@
+
+
+ {% if items.size > 0 %}
+ {% assign new_courses_count = 0 %}
+
+
+ {% for course in items %}
+ {% if course.properties.is_article_course == false %}
+ {% if course.started? == false %}
+ {% assign new_courses_count = new_courses_count | plus: 1 %}
+
+ {% include "cards_course_ongoing" with course %}
+
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+
+
+
+ {% if new_courses_count > 0 %}
+
+ {% else %}
+
+
+
+ Yikes! You don't have any new training at this moment.
+
+
![Yikes! You don't have any new training at this moment.]()
+
+ {% endif %}
+ {% else %}
+
+
+ Yikes! You don't have any new training at this moment.
+
+
![Yikes! You don't have any new training at this moment.]()
+
+ {% endif %}
+
+
+
+
+
+ Ongoing Training
+
+
+
+ {% if items.size > 0 %}
+ {% assign ongoing_courses_count = 0 %}
+
+
+ {% for course in items %}
+ {% if course.properties.is_article_course == false %}
+ {% if course.progress > 0 and course.progress < 100 %}
+ {% assign ongoing_courses_count = ongoing_courses_count | plus: 1 %}
+
+ {% include "cards_course_ongoing" with course %}
+
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+
+
+
+ {% if ongoing_courses_count > 0 %}
+
+ {% comment %}
See more {% endcomment %}
+
+ {% else %}
+
+
+
+ Yikes! You don't have any ongoing training at this moment.
+
+
![Yikes! You don't have any ongoing training at this moment.]()
+
+ {% endif %}
+ {% else %}
+
+
+ Yikes! You don't have any ongoing training at this moment.
+
+
![Yikes! You don't have any ongoing training at this moment.]()
+
+
+ {% endif %}
+
+