diff --git a/Custom_Templates/customer_templates/CE-CS-Internal-Demo/_head.html.liquid b/Custom_Templates/customer_templates/CE-CS-Internal-Demo/_head.html.liquid
new file mode 100644
index 00000000..cbea6a24
--- /dev/null
+++ b/Custom_Templates/customer_templates/CE-CS-Internal-Demo/_head.html.liquid
@@ -0,0 +1,49 @@
+{% styles default %}
+{% styles colors %}
+{% styles custom %}
+
+{% comment %} {% endcomment %}
+{% comment %} {% endcomment %}
+{% comment %} {% endcomment %}
+
+
+
+
+
+{% if current_person.groups.any? %}
+ {% for groups in current_person.groups %}
+
+ {% assign group = groups.name | split: "," %}
+
+ {% endfor %}
+{% else %}
+ {% assign group = "None" %}
+
+{% endif %}
+
+ {% assign email_add = current_person.email | split: "@" %}
+ {% assign domain = email_add.last | split: "." %}
+
+
+
diff --git a/Custom_Templates/customer_templates/Chubb/.DS_Store b/Custom_Templates/customer_templates/Chubb/.DS_Store
new file mode 100644
index 00000000..5008ddfc
Binary files /dev/null and b/Custom_Templates/customer_templates/Chubb/.DS_Store differ
diff --git a/Custom_Templates/customer_templates/Chubb/_featured_cards_course.html.liquid b/Custom_Templates/customer_templates/Chubb/_featured_cards_course.html.liquid
index 3e61e354..157047a6 100644
--- a/Custom_Templates/customer_templates/Chubb/_featured_cards_course.html.liquid
+++ b/Custom_Templates/customer_templates/Chubb/_featured_cards_course.html.liquid
@@ -35,7 +35,13 @@
- {% endif %}
+ {% elsif group.id == '' %}
+ {% comment %}
+ <------------------------------->
+ Jenelle, similar to above for Cornerstone, please add your carousel items here!
+ <------------------------------->
+ {% endcomment %}
+ {% endif %}
{% endfor %}
{% endif %}
diff --git a/Custom_Templates/customer_templates/Chubb/_recommended_carousel.html.liquid b/Custom_Templates/customer_templates/Chubb/_recommended_carousel.html.liquid
index 66c7685e..6cdd44a9 100644
--- a/Custom_Templates/customer_templates/Chubb/_recommended_carousel.html.liquid
+++ b/Custom_Templates/customer_templates/Chubb/_recommended_carousel.html.liquid
@@ -14,7 +14,11 @@
{% endif %}
{% endfor %}
{% endfor %}
+{% comment %}
+To add for Chubb:
+If person is in group show certain courses.
+{% endcomment%}
{% for course in courses.in_catalog%}
@@ -100,4 +104,4 @@
z-index:1;
}
-
\ No newline at end of file
+
diff --git a/Scripts/API_Tests/Apikeys.py b/Scripts/API_Tests/Apikeys.py
index 0743b56c..2474e4d6 100644
--- a/Scripts/API_Tests/Apikeys.py
+++ b/Scripts/API_Tests/Apikeys.py
@@ -34,3 +34,4 @@ EMPLOY = "qcNggCm4SBtC0gTqLGv30vX8l"
LUMAFINTECH = "oDFA7XSmjEKjEwIDIKLm0rxs1"
SUPPLIERPROD = "DtRH9m4r0zMbJEx1yWBGKlObi"
DEEPL = "fo5uOoG9FNNGQ6lZkenmZVIzq"
+CECSINTERNAL = "r8KINCJRgkkQnrzzKitOJfsVw"
diff --git a/Scripts/blank_javascript.js b/Scripts/blank_javascript.js
new file mode 100644
index 00000000..a0b5ea1c
--- /dev/null
+++ b/Scripts/blank_javascript.js
@@ -0,0 +1,25 @@
+function extractEmailDomain(email) {
+ // Check if email is provided and is a string
+ if (!email || typeof email !== 'string') {
+ return 'Please provide a valid email address';
+ }
+
+ // Check if email contains @ symbol
+ if (!email.includes('@')) {
+ return 'Invalid email format';
+ }
+
+ // Split the email at @ and get the domain part
+ const domainPart = email.split('@')[1];
+
+ // Remove .com or any other extension
+ const domain = domainPart.split('.')[0];
+
+ return domain;
+}
+
+// Example usage:
+console.log(extractEmailDomain('user@gmail.com')); // Output: gmail
+console.log(extractEmailDomain('john.doe@yahoo.com')); // Output: yahoo
+console.log(extractEmailDomain('contact@company.org')); // Output: company
+