+ {% for course in courses.enrolled %}
+ {% unless course.properties.resource or course.properties.on_demand%}
+ {% if course.properties.language == userLanguage %}
+
{% include "cards_course" %}
+ {% endif %}
+ {% endunless %}
+ {% endfor %}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_all_lp.html.liquid b/Custom_Templates/customer_templates/DeepL/_all_lp.html.liquid
new file mode 100644
index 00000000..de38506b
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_all_lp.html.liquid
@@ -0,0 +1,81 @@
+
+
+ Browse all learning paths
+
+
+ Alle Lernpfade durchsuchen
+
+
+
+ {% for learning_path in learning_paths.enrolled %}
+ {% for category in learning_path.categories %}
+ {% if category.name == userLanguage %}
+
+ Join our vibrant community today and connect with like-minded individuals from around the world! Share your ideas, passions, and experiences while learning from others.
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_cards_course.html.liquid b/Custom_Templates/customer_templates/DeepL/_cards_course.html.liquid
new file mode 100644
index 00000000..d67c7f3d
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_cards_course.html.liquid
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+ {{course.activities_count}} lessons
+
+
+ {{course.activities_count}} Lektionen
+
+
+ {{course.properties.course_time}} minutes
+
+
+ {{course.properties.course_time}} Minuten
+
+
+
+ {{ course.name }}
+
+
+ {{ course.short_description }}
+
+
+
{{course.progress}}%
+
+
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/DeepL/_cards_learning_path.html.liquid b/Custom_Templates/customer_templates/DeepL/_cards_learning_path.html.liquid
new file mode 100644
index 00000000..f7f4b134
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_cards_learning_path.html.liquid
@@ -0,0 +1,63 @@
+
+
diff --git a/Custom_Templates/customer_templates/DeepL/_cards_resources.html.liquid b/Custom_Templates/customer_templates/DeepL/_cards_resources.html.liquid
new file mode 100644
index 00000000..bdb3f3e6
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_cards_resources.html.liquid
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+ {% for category in course.categories %}
+ {% if category.name == 'PDF' %}
+ PDF
+ {% elsif category.name == 'Video' %}
+ Video
+ {% endif %}
+ {% endfor %}
+
+
+ {{course.properties.course_time}} minutes
+
+
+
+ {{ course.name }}
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/DeepL/_cards_training_event.html.liquid b/Custom_Templates/customer_templates/DeepL/_cards_training_event.html.liquid
new file mode 100644
index 00000000..3f1a2d08
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_cards_training_event.html.liquid
@@ -0,0 +1,89 @@
+
+
+
+ {{ training_event.title }}
+
+
+
+
+
+ {% t shared.event_types, key: training_event.event_type %}
+
+
+
+ {% t .sessions, count: training_event.sessions.size %}
+
+
+
+
+ Next session
+
+
+ Nächste Sitzung
+
+
+
+
+
+ {{ training_event.sessions.first.day }}
+
+
+
+ {{ training_event.sessions.first.month }}
+
+
+ {{ training_event.sessions.first.year }}
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_carousel-filters.html.liquid b/Custom_Templates/customer_templates/DeepL/_carousel-filters.html.liquid
new file mode 100644
index 00000000..1369fea9
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_carousel-filters.html.liquid
@@ -0,0 +1,136 @@
+
+
+
Popular
+
Beliebt
+
Administration
+
Verwaltung
+
Products
+
Produkte
+
Features
+
Funktionen
+
+
+
Filter by progress:
+
Nach Fortschritt filtern:
+
+ Not selected
+
+
+
+
+
All courses
+
Alle Kurse
+
Not started
+
Nicht gestartet
+
In progress
+
In Arbeit
+
Completed
+
Abgeschlossen
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_catalog-filters.html.liquid b/Custom_Templates/customer_templates/DeepL/_catalog-filters.html.liquid
new file mode 100644
index 00000000..9a65e743
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_catalog-filters.html.liquid
@@ -0,0 +1,88 @@
+
+
+ {% if course.categories.any? %}
+ {% include "course_categories" %}
+ {% endif %}
+
+ {% if course.instructors.any? %}
+
+ {% include "course_instructors" %}
+
+ {% endif %}
+
+ {% if course.events.any? %}
+
+ {% include "course_events" %}
+
+ {% endif %}
+
+
+
+ {% include "course_progress_and_cta" %}
+
+ {% include "course_outline" %}
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_course_events.html.liquid b/Custom_Templates/customer_templates/DeepL/_course_events.html.liquid
new file mode 100644
index 00000000..5fa80eef
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_course_events.html.liquid
@@ -0,0 +1,28 @@
+
+ {% t .header %}
+
+
+ {% for event in course.events %}
+
+
+
+ {{ event.sessions.first.abbreviated_month }}
+
+
+ {{ event.sessions.first.day }}
+
+
+
+
+ {{ event.title }}
+
+
+ {% t shared.event_types, key: event.event_type %}
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_course_progress_and_cta.html.liquid b/Custom_Templates/customer_templates/DeepL/_course_progress_and_cta.html.liquid
new file mode 100644
index 00000000..2ff2773e
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_course_progress_and_cta.html.liquid
@@ -0,0 +1,77 @@
+
+
+ Course progress
+
+
+
+
+
+
+
+ {{ course.progress }}%
+
+
+
+
+
+{% if course.learner_can_retake? %}
+
+{% else %}
+
+{% endif %}
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_course_version_outdated_alert.html.liquid b/Custom_Templates/customer_templates/DeepL/_course_version_outdated_alert.html.liquid
new file mode 100644
index 00000000..03e245ab
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_course_version_outdated_alert.html.liquid
@@ -0,0 +1,7 @@
+{% if courses.include_courses_to_restart? %}
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_learning_path_desktop_view.html.liquid b/Custom_Templates/customer_templates/DeepL/_learning_path_desktop_view.html.liquid
new file mode 100644
index 00000000..887c0ee8
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_learning_path_desktop_view.html.liquid
@@ -0,0 +1,76 @@
+{% include "learning_path_desktop_header" %}
+{% include "learning_path_desktop_content" %}
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_learning_path_instructors.html.liquid b/Custom_Templates/customer_templates/DeepL/_learning_path_instructors.html.liquid
new file mode 100644
index 00000000..8b137891
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_learning_path_instructors.html.liquid
@@ -0,0 +1 @@
+
diff --git a/Custom_Templates/customer_templates/DeepL/_learning_path_mobile_content.html.liquid b/Custom_Templates/customer_templates/DeepL/_learning_path_mobile_content.html.liquid
new file mode 100644
index 00000000..92ffd4c8
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_learning_path_mobile_content.html.liquid
@@ -0,0 +1,19 @@
+{% if learning_path.in_progress? %}
+ {% include "learning_path_outline" %}
+
+ {% include "learning_path_description" %}
+
+{% else %}
+
+ {% include "learning_path_description" %}
+
+
+ {% include "learning_path_outline" %}
+
+{% endif %}
+
+{% if learning_path.instructors.any? %}
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_resources-filters.html.liquid b/Custom_Templates/customer_templates/DeepL/_resources-filters.html.liquid
new file mode 100644
index 00000000..45ab5a88
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_resources-filters.html.liquid
@@ -0,0 +1,94 @@
+
+ {% for course in courses.in_catalog %}
+ {% if course.properties.resource == true %}
+ {% if course.properties.language == userLanguage %}
+
{% include "cards_resources" %}
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_search_result.html.liquid b/Custom_Templates/customer_templates/DeepL/_search_result.html.liquid
new file mode 100644
index 00000000..5c2a4991
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_search_result.html.liquid
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_training_events_zero_state.html.liquid b/Custom_Templates/customer_templates/DeepL/_training_events_zero_state.html.liquid
new file mode 100644
index 00000000..076b789e
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_training_events_zero_state.html.liquid
@@ -0,0 +1,9 @@
+
+
+ {% t .empty %}
+
+
+
diff --git a/Custom_Templates/customer_templates/DeepL/_training_session_calendars.html.liquid b/Custom_Templates/customer_templates/DeepL/_training_session_calendars.html.liquid
new file mode 100644
index 00000000..6c758b73
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_training_session_calendars.html.liquid
@@ -0,0 +1,52 @@
+
diff --git a/Custom_Templates/customer_templates/DeepL/_training_session_description.html.liquid b/Custom_Templates/customer_templates/DeepL/_training_session_description.html.liquid
new file mode 100644
index 00000000..73be4cf4
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_training_session_description.html.liquid
@@ -0,0 +1,6 @@
+
+ {% t .header %}
+
+
+ {{ training_event.description }}
+
diff --git a/Custom_Templates/customer_templates/DeepL/_training_session_desktop_view.html.liquid b/Custom_Templates/customer_templates/DeepL/_training_session_desktop_view.html.liquid
new file mode 100644
index 00000000..4e35db7b
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_training_session_desktop_view.html.liquid
@@ -0,0 +1,48 @@
+
+{% include "training_session_header" %}
+
+
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+
+
+ {% include "training_session_details" %}
+ {% include "training_session_cta" %}
+
+
+
+
+ {% include "training_session_description" %}
+
+
+
+
+
+
+ {% t shared.more_sessions %}
+
+ {% if training_event.sessions.size > 1 %}
+ {% include "training_session_more_sessions" %}
+ {% else %}
+
+
+
+ {% t .empty %}
+
+
+ {% endif %}
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_training_session_details.html.liquid b/Custom_Templates/customer_templates/DeepL/_training_session_details.html.liquid
new file mode 100644
index 00000000..64a925b7
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_training_session_details.html.liquid
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+ {% if training_session.approved? and training_session.location %}
+
+
+ {{ training_session.location }}
+
+ {% endif %}
+
+ {% if training_session.approved? and training_session.session_url %}
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_training_session_mobile_view.html.liquid b/Custom_Templates/customer_templates/DeepL/_training_session_mobile_view.html.liquid
new file mode 100644
index 00000000..3270d65d
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_training_session_mobile_view.html.liquid
@@ -0,0 +1,27 @@
+
+
+ {% include "training_session_header" %}
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+ {% include "training_session_details" %}
+
+ {% include "training_session_cta" %}
+
+ {% include "training_session_description" %}
+
+
+ {% if training_event.sessions.size > 1 %}
+
+
+
+ {% t shared.more_sessions %}
+
+ {% include "training_session_more_sessions" %}
+
+
+ {% endif %}
+
+
diff --git a/Custom_Templates/customer_templates/DeepL/_training_session_more_sessions.html.liquid b/Custom_Templates/customer_templates/DeepL/_training_session_more_sessions.html.liquid
new file mode 100644
index 00000000..6cfafa87
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_training_session_more_sessions.html.liquid
@@ -0,0 +1,3 @@
+{% for session in training_event.sessions %}
+ {% include "training_session_tile", current_session: training_session %}
+{% endfor %}
diff --git a/Custom_Templates/customer_templates/DeepL/_training_session_status.html.liquid b/Custom_Templates/customer_templates/DeepL/_training_session_status.html.liquid
new file mode 100644
index 00000000..75116282
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_training_session_status.html.liquid
@@ -0,0 +1,6 @@
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_your_cards_training_event.html.liquid b/Custom_Templates/customer_templates/DeepL/_your_cards_training_event.html.liquid
new file mode 100644
index 00000000..7d8892e1
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_your_cards_training_event.html.liquid
@@ -0,0 +1,112 @@
+
+
+
+ {{ training_event.title }}
+
+
+
+
+
+ {% t shared.event_types, key: training_event.event_type %}
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/_your_courses.html.liquid b/Custom_Templates/customer_templates/DeepL/_your_courses.html.liquid
new file mode 100644
index 00000000..f40c96f1
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/_your_courses.html.liquid
@@ -0,0 +1,143 @@
+
+
+ Your courses
+
+
+ Ihre Kurse
+
+
+
+ {% for course in courses.enrolled %}
+ {% if course.progress > 0 %}
+ {% unless course.properties.resource == true %}
+ {% if course.properties.language == userLanguage %}
+
+ {% for learning_path in learning_paths.enrolled %}
+ {% if learning_path.progress > 0 %}
+ {% for category in learning_path.categories %}
+ {% if category.name == userLanguage %}
+
+
+ {% include "recommended" %}
+
+
+ {% include "popular" %}
+
+ {% if webinars > 0 %}
+
+ {% include "webinars" %}
+
+ {% endif %}
+ {% comment %}
+ {% include "banner" %}
+ {% endcomment %}
+
+
+{% include "footer" %}
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/learning_path.html.liquid b/Custom_Templates/customer_templates/DeepL/learning_path.html.liquid
new file mode 100644
index 00000000..5cbb5a93
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/learning_path.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "learning_path_desktop_view" %}
+
+
+ {% include "learning_path_mobile_view" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/DeepL/learning_path_summary.html.liquid b/Custom_Templates/customer_templates/DeepL/learning_path_summary.html.liquid
new file mode 100644
index 00000000..99ae32ed
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/learning_path_summary.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "learning_path_summary_desktop_view" %}
+
+
+ {% include "learning_path_summary_mobile_view" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/DeepL/learning_paths.html.liquid b/Custom_Templates/customer_templates/DeepL/learning_paths.html.liquid
new file mode 100644
index 00000000..87e7a974
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/learning_paths.html.liquid
@@ -0,0 +1,27 @@
+{% assign enrolled_lp = 0 %}
+{% for learning_path in learning_paths.enrolled %}
+ {% if learning_path.progress > 0 %}
+ {% assign enrolled_lp = enrolled_lp | plus: 1 %}
+ {% endif %}
+{% endfor %}
+
+{% include "header" %}
+
+
+
Learning paths
+
Lernpfade
+
The guides most relevant to you, all in one place. Pick a use case and start exploring DeepL.
+
Die für Sie wichtigsten Leitfäden an einem Ort. Wählen Sie einen Anwendungsfall und entdecken Sie DeepL.
+
+
+
+ {% if enrolled_lp > 0 %}
+
+ {% include "your_lp" %}
+
+ {% endif %}
+
+ {% include "all_lp" %}
+
+
+{% include "footer" %}
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/login.html.liquid b/Custom_Templates/customer_templates/DeepL/login.html.liquid
new file mode 100644
index 00000000..bde185dd
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/login.html.liquid
@@ -0,0 +1,53 @@
+
+
+ {% include "header_minimal" %}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/DeepL/master.html.liquid b/Custom_Templates/customer_templates/DeepL/master.html.liquid
new file mode 100644
index 00000000..63345068
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/master.html.liquid
@@ -0,0 +1 @@
+{% body %}
diff --git a/Custom_Templates/customer_templates/DeepL/not_found.html.liquid b/Custom_Templates/customer_templates/DeepL/not_found.html.liquid
new file mode 100644
index 00000000..91c76e4b
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/not_found.html.liquid
@@ -0,0 +1,10 @@
+
+
+
+ {% t .header %}
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/DeepL/private_certificate.html.liquid b/Custom_Templates/customer_templates/DeepL/private_certificate.html.liquid
new file mode 100644
index 00000000..15d05419
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/private_certificate.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+{% include "certificates_top_bar" %}
+
+
+
+ {% include "certificates_preview" %}
+ {% include "certificates_info_column" %}
+
+
+
diff --git a/Custom_Templates/customer_templates/DeepL/public_certificate.html.liquid b/Custom_Templates/customer_templates/DeepL/public_certificate.html.liquid
new file mode 100644
index 00000000..15d05419
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/public_certificate.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+{% include "certificates_top_bar" %}
+
+
+
+ {% include "certificates_preview" %}
+ {% include "certificates_info_column" %}
+
Live and recorded webinars, hosted by in-house experts at DeepL. Get invaluable insights from the people who created our products.
+
Live- und aufgezeichnete Webinare, die von internen Experten auf DeepL veranstaltet werden. Lassen Sie sich von den Leuten schulen, die unsere Produkte entwickelt haben.
+
+
+
+ {% if enrolled_events > 0 %}
+
+ {% include "your_webinars" %}
+
+ {% endif %}
+ {% if upcoming_webinars > 0 %}
+
+ {% include "upcoming_webinars" %}
+
+ {% endif %}
+
+ {% include "on_demand" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/DeepL/training_session.html.liquid b/Custom_Templates/customer_templates/DeepL/training_session.html.liquid
new file mode 100644
index 00000000..b77b48d8
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/training_session.html.liquid
@@ -0,0 +1,111 @@
+{% include "header" %}
+
+
+ {% include "training_session_desktop_view" %}
+
+
+ {% include "training_session_mobile_view" %}
+
+
+{% include "footer" %}
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/DeepL/training_session_attendance.html.liquid b/Custom_Templates/customer_templates/DeepL/training_session_attendance.html.liquid
new file mode 100644
index 00000000..e6a0ec1c
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/training_session_attendance.html.liquid
@@ -0,0 +1,43 @@
+{% include "header" %}
+
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/DeepL/transcript.html.liquid b/Custom_Templates/customer_templates/DeepL/transcript.html.liquid
new file mode 100644
index 00000000..b6cb5428
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/transcript.html.liquid
@@ -0,0 +1,8 @@
+{% include "header" %}
+{% include "account_tabs" %}
+
+
+ {% transcript %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/DeepL/unsubscribe.html.liquid b/Custom_Templates/customer_templates/DeepL/unsubscribe.html.liquid
new file mode 100644
index 00000000..69a54028
--- /dev/null
+++ b/Custom_Templates/customer_templates/DeepL/unsubscribe.html.liquid
@@ -0,0 +1,30 @@
+{% include "header" %}
+
+
+ {% if token %}
+
+
+ {% t .unsubscribe_text %}
+
+
+ {% t .resubscribe_text %}
+
+
+ {% else %}
+
+
+ {% t .resubscribed_text %}
+
+ {% endif %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_account_avatar.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_account_avatar.html.liquid
new file mode 100644
index 00000000..d952af93
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_account_avatar.html.liquid
@@ -0,0 +1,66 @@
+
+
{% t .description %}
+
{% t .requirements %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_account_desktop_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_account_desktop_view.html.liquid
new file mode 100644
index 00000000..8ae8599d
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_account_desktop_view.html.liquid
@@ -0,0 +1,19 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_account_form.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_account_form.html.liquid
new file mode 100644
index 00000000..ddd264c2
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_account_form.html.liquid
@@ -0,0 +1,139 @@
+
+ {% t .header %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% unless form.options.invite? %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% endunless %}
+
+{% if form.options.invite? %}
+
+ {% endif %}
+
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_account_mobile_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_account_mobile_view.html.liquid
new file mode 100644
index 00000000..6ac8c007
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_account_mobile_view.html.liquid
@@ -0,0 +1,17 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_account_tabs.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_account_tabs.html.liquid
new file mode 100644
index 00000000..ec4109c1
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_account_tabs.html.liquid
@@ -0,0 +1,32 @@
+{% capture settings_path %}{% route account %}{% endcapture %}
+{% capture transcript_path %}{% route transcript %}{% endcapture %}
+{% capture order_history_path %}{% route order_history %}{% endcapture %}
+
+{% if current_person.signed_in? %}
+{% unless current_school.sso_active? %}
+
+{% endunless %}
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_description.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_description.html.liquid
new file mode 100644
index 00000000..e7e891ca
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_description.html.liquid
@@ -0,0 +1,6 @@
+
+ {% t .about %}
+
+
+ {{ product.description }}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_desktop_header.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_desktop_header.html.liquid
new file mode 100644
index 00000000..6fb22dec
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_desktop_header.html.liquid
@@ -0,0 +1,12 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_product_desktop_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_product_desktop_view.html.liquid
new file mode 100644
index 00000000..66f57bdc
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_product_desktop_view.html.liquid
@@ -0,0 +1,21 @@
+{% include "bundle_desktop_header" %}
+
+
+
+
+
+ {% include "bundle_description" %}
+
+
+
+
+
+ {% include "product_price_and_cta"%}
+
+ {% include "bundle_product_outline" %}
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_product_mobile_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_product_mobile_view.html.liquid
new file mode 100644
index 00000000..89272b6d
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_product_mobile_view.html.liquid
@@ -0,0 +1,27 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_product_outline.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_product_outline.html.liquid
new file mode 100644
index 00000000..9fc22512
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_bundle_product_outline.html.liquid
@@ -0,0 +1,12 @@
+
+
{% t shared.bundle.title %}
+ {% for item in product.bundle_items %}
+ {% if item.course? %}
+ {% include "product_outline_course", id: forloop.index %}
+ {% elsif item.training_event? %}
+ {% include "product_outline_event", id: forloop.index %}
+ {% elsif item.learning_path? %}
+ {% include "product_outline_lp", id: forloop.index %}
+ {% endif %}
+ {% endfor %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_catalog_item.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_catalog_item.html.liquid
new file mode 100644
index 00000000..a096f57c
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_catalog_item.html.liquid
@@ -0,0 +1,38 @@
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
{{ item.formatted_type }}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_course.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_course.html.liquid
new file mode 100644
index 00000000..727b06a1
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_course.html.liquid
@@ -0,0 +1,34 @@
+
+
+ {% if course.ribbon %}
+
+ {{ course.ribbon }}
+
+ {% endif %}
+
+
+
+ {{ course.name }}
+
+
+ {{ course.instructor_names }}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_learning_path.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_learning_path.html.liquid
new file mode 100644
index 00000000..1636dc54
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_learning_path.html.liquid
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
{% t shared.learning_path.title %}
+
+ {{ learning_path.items.count }} {% t .items %}
+
+
+
+
{% t shared.learning_path.title %}
+
+
+
+
+
+ {{ learning_path.name }}
+
+
+
+ {{ learning_path.instructor_names }}
+
+
+
+ {{ learning_path.description }}
+
+
+
+ {% t shared.progress, count: learning_path.progress %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_training_event.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_training_event.html.liquid
new file mode 100644
index 00000000..be152ff7
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_cards_training_event.html.liquid
@@ -0,0 +1,53 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_info_column.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_info_column.html.liquid
new file mode 100644
index 00000000..61adfaba
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_info_column.html.liquid
@@ -0,0 +1,4 @@
+
+ {% include "certificates_verification" %}
+ {% include "certificates_metadata" %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_metadata.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_metadata.html.liquid
new file mode 100644
index 00000000..9f4a1dba
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_metadata.html.liquid
@@ -0,0 +1,59 @@
+
+
+
+
+
+ {% t .learner %}
+
+
+
+
+ {{certificate.learner_name}}
+
+
+
+
+
+ {% if certificate.issuer_name_enabled? %}
+
+
+
+ {% t .issued_by %}
+
+
+
+
+ {{ certificate.issuer_name }}
+
+
+
+
+ {% endif %}
+
+
+
+
+ {% t .issued_on %}
+
+
+
+
+ {{ certificate.issue_date }}
+
+
+
+
+
+
+
+ {% t .expires_on %}
+
+
+
+
+ {{ certificate.expiration_date_translation }}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_preview.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_preview.html.liquid
new file mode 100644
index 00000000..6357b621
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_preview.html.liquid
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_top_bar.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_top_bar.html.liquid
new file mode 100644
index 00000000..74a7ae41
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_top_bar.html.liquid
@@ -0,0 +1,44 @@
+
+
+
+
+ {{certificate.certificate_name}}
+
+
+
+ {% if certificate.linkedin_sharing_enabled and current_person.signed_in? and certificate.learner_uuid == current_person.id %}
+
+
+ {% t .share %}
+
+ {% endif %}
+
+ {% if certificate.generating_pdf %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_verification.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_verification.html.liquid
new file mode 100644
index 00000000..4fc19415
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_certificates_verification.html.liquid
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ {{certificate.verification_title}}
+
+
+ {{certificate.verification_description}}
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_activity_locked.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_activity_locked.html.liquid
new file mode 100644
index 00000000..386393d5
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_activity_locked.html.liquid
@@ -0,0 +1,4 @@
+
+
+ {{ activity.title }}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_activity_unlocked.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_activity_unlocked.html.liquid
new file mode 100644
index 00000000..30c03305
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_activity_unlocked.html.liquid
@@ -0,0 +1,15 @@
+{% if course.enrolled? %}
+
+ {{ activity.title }}
+
+{% else%}
+
+ {{ activity.title }}
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_categories.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_categories.html.liquid
new file mode 100644
index 00000000..64f40e73
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_categories.html.liquid
@@ -0,0 +1,10 @@
+
+ {% t .header %}
+
+
+ {% for category in course.categories %}
+
+ {{ category.name }}
+
+ {% endfor %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_description.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_description.html.liquid
new file mode 100644
index 00000000..b3c6b470
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_description.html.liquid
@@ -0,0 +1,6 @@
+
+ {% t .header, key: current_school.course_vocabulary %}
+
+
+ {{ course.full_description }}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_desktop_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_desktop_view.html.liquid
new file mode 100644
index 00000000..e16fee16
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_desktop_view.html.liquid
@@ -0,0 +1,40 @@
+
+
+ {% include "course_header" %}
+
+
+
+
+
+ {% include "course_description" %}
+
+ {% if course.categories.any? %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_events.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_events.html.liquid
new file mode 100644
index 00000000..53d3c528
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_events.html.liquid
@@ -0,0 +1,28 @@
+
+ {% t .header %}
+
+
+ {% for event in course.events %}
+
+
+
+ {{ event.sessions.first.abbreviated_month }}
+
+
+ {{ event.sessions.first.day }}
+
+
+
+
+ {{ event.title }}
+
+
+ {% t shared.event_types, key: event.event_type %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_header.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_header.html.liquid
new file mode 100644
index 00000000..84820ec4
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_header.html.liquid
@@ -0,0 +1,16 @@
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_instructors.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_instructors.html.liquid
new file mode 100644
index 00000000..a8d82b21
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_instructors.html.liquid
@@ -0,0 +1,22 @@
+
+ {% t .header %}
+
+
+ {% for instructor in course.instructors %}
+
+
+
+
+ {{ instructor.name }}
+
+
+ {{ instructor.title }}
+
+
+
+ {% endfor %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_mobile_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_mobile_view.html.liquid
new file mode 100644
index 00000000..7f31ff35
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_mobile_view.html.liquid
@@ -0,0 +1,40 @@
+
+ {% include "course_header" %}
+
+ {% include "course_progress_and_cta" %}
+
+
+
+{% if course.progress == 0 %}
+
+ {% include "course_description" %}
+
+
+ {% include "course_outline" %}
+
+{% else %}
+
+ {% include "course_outline" %}
+
+
+ {% include "course_description" %}
+
+{% endif %}
+
+{% if course.categories.any? %}
+
+ {% include "course_categories" %}
+
+{% endif %}
+
+{% if course.instructors.any? %}
+
+ {% include "course_instructors" %}
+
+{% endif %}
+
+{% if course.events.any? %}
+
+ {% include "course_events" %}
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_outline.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_outline.html.liquid
new file mode 100644
index 00000000..72f97e79
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_outline.html.liquid
@@ -0,0 +1,40 @@
+
+
+ {% t .header, key: current_school.course_vocabulary %}
+
+
+
+ {% for section in course.sections %}
+
+
+ {{ section.name }}
+
+
+ {% for activity in section.activities %}
+
+
+ {% if activity.completed? %}
+
+ {% if activity.locked? %}
+ {% include "course_activity_locked" %}
+ {% else %}
+ {% include "course_activity_unlocked", class: "np-course-outline-content-activity-link-completed" %}
+ {% endif %}
+
+ {% else %}
+
+ {% if activity.locked? %}
+ {% include "course_activity_locked" %}
+ {% else %}
+ {% include "course_activity_unlocked", class: "np-course-outline-content-activity-link" %}
+ {% endif %}
+
+ {% endif %}
+
+ {% endfor %}
+
+
+ {% endfor %}
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_product_desktop_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_product_desktop_view.html.liquid
new file mode 100644
index 00000000..ae8d50de
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_product_desktop_view.html.liquid
@@ -0,0 +1,41 @@
+
+
+ {% include "course_header" %}
+
+
+
+
+
+ {% include "course_description" %}
+
+ {% if course.categories.any? %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_product_mobile_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_product_mobile_view.html.liquid
new file mode 100644
index 00000000..880a0f24
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_product_mobile_view.html.liquid
@@ -0,0 +1,31 @@
+
+ {% include "course_header" %}
+
+ {% include "product_price_and_cta" %}
+
+
+
+
+ {% include "course_description" %}
+
+
+ {% include "product_outline" %}
+
+
+{% if course.categories.any? %}
+
+ {% include "course_categories" %}
+
+{% endif %}
+
+{% if course.instructors.any? %}
+
+ {% include "course_instructors" %}
+
+{% endif %}
+
+{% if course.events.any? %}
+
+ {% include "course_events" %}
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_progress_and_cta.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_progress_and_cta.html.liquid
new file mode 100644
index 00000000..c3e46166
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_progress_and_cta.html.liquid
@@ -0,0 +1,48 @@
+
+
+ {% t .header %}
+
+
+
+
+
+
+
+ {% t shared.progress, count: course.progress %}
+
+ {% include "product_expiration_date", date: course.expiration_date %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_version_outdated_alert.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_version_outdated_alert.html.liquid
new file mode 100644
index 00000000..03e245ab
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_version_outdated_alert.html.liquid
@@ -0,0 +1,7 @@
+{% if courses.include_courses_to_restart? %}
+
+
+ {% t .content %}
+
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_course_version_outdated_popup.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_version_outdated_popup.html.liquid
new file mode 100644
index 00000000..d2e6fc52
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_course_version_outdated_popup.html.liquid
@@ -0,0 +1,33 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_courses_catalog.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_courses_catalog.html.liquid
new file mode 100644
index 00000000..ea1e9ea4
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_courses_catalog.html.liquid
@@ -0,0 +1,16 @@
+{% if courses.in_catalog.any? %}
+
+ {% for course in courses.in_catalog %}
+
+ {% include "cards_course" with course %}
+
+ {% endfor %}
+
+{% else %}
+ {% capture message %}
+ {% t shared.zero_state.courses.catalog,
+ key: current_school.course_vocabulary
+ %}
+ {% endcapture %}
+ {% include "courses_zero_state", message: message %}
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_courses_index.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_courses_index.html.liquid
new file mode 100644
index 00000000..19e7671b
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_courses_index.html.liquid
@@ -0,0 +1,16 @@
+{% if courses.enrolled.any? %}
+
+ {% for course in courses.enrolled %}
+
+ {% include "cards_course" with course %}
+
+ {% endfor %}
+
+{% else %}
+ {% capture message %}
+ {% t shared.zero_state.courses.index,
+ key: current_school.course_vocabulary
+ %}
+ {% endcapture %}
+ {% include "courses_zero_state", message: message %}
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_courses_zero_state.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_courses_zero_state.html.liquid
new file mode 100644
index 00000000..26e371f7
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_courses_zero_state.html.liquid
@@ -0,0 +1,6 @@
+
+
+ {{ message }}
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_filter_checkbox.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_filter_checkbox.html.liquid
new file mode 100644
index 00000000..5cbcbd07
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_filter_checkbox.html.liquid
@@ -0,0 +1,10 @@
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_filter_dropdown.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_filter_dropdown.html.liquid
new file mode 100644
index 00000000..e7a954bb
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_filter_dropdown.html.liquid
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_filter_select.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_filter_select.html.liquid
new file mode 100644
index 00000000..d006c0df
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_filter_select.html.liquid
@@ -0,0 +1,22 @@
+{% if params.q %}
+
+{% endif %}
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_footer.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_footer.html.liquid
new file mode 100644
index 00000000..b076dea7
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_footer.html.liquid
@@ -0,0 +1,97 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_head.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_head.html.liquid
new file mode 100644
index 00000000..beab5b4a
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_head.html.liquid
@@ -0,0 +1,3 @@
+{% styles default %}
+{% styles colors %}
+{% styles custom %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_header.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_header.html.liquid
new file mode 100644
index 00000000..25df76a5
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_header.html.liquid
@@ -0,0 +1,232 @@
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_completed_banner.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_completed_banner.html.liquid
new file mode 100644
index 00000000..3632ce1c
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_completed_banner.html.liquid
@@ -0,0 +1,13 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_course.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_course.html.liquid
new file mode 100644
index 00000000..dc463beb
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_course.html.liquid
@@ -0,0 +1,56 @@
+{% if learning_path.enrolled? and course.unlocked? %}
+
+
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_description.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_description.html.liquid
new file mode 100644
index 00000000..f79f9e14
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_description.html.liquid
@@ -0,0 +1,6 @@
+
+ {% t .about %}
+
+
+ {{ learning_path.description }}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_desktop_content.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_desktop_content.html.liquid
new file mode 100644
index 00000000..e9ca85d9
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_desktop_content.html.liquid
@@ -0,0 +1,21 @@
+
+
+
+
+
+ {% include "learning_path_description" %}
+ {% include "learning_path_instructors" %}
+
+
+
+
+
+ {% include "learning_path_progress_and_cta" %}
+
+ {% include "learning_path_outline" %}
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_desktop_header.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_desktop_header.html.liquid
new file mode 100644
index 00000000..6f4c112c
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_desktop_header.html.liquid
@@ -0,0 +1,12 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_desktop_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_desktop_view.html.liquid
new file mode 100644
index 00000000..8447443e
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_desktop_view.html.liquid
@@ -0,0 +1,2 @@
+{% include "learning_path_desktop_header" %}
+{% include "learning_path_desktop_content" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_instructors.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_instructors.html.liquid
new file mode 100644
index 00000000..a8342301
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_instructors.html.liquid
@@ -0,0 +1,26 @@
+{% if learning_path.instructors.any? %}
+
+
+ {% t shared.instructors %}
+
+
+ {% for instructor in learning_path.instructors %}
+
+
+
+
+ {{ instructor.name }}
+
+
+ {{ instructor.title }}
+
+
+
+ {% endfor %}
+
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_mobile_content.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_mobile_content.html.liquid
new file mode 100644
index 00000000..92ffd4c8
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_mobile_content.html.liquid
@@ -0,0 +1,19 @@
+{% if learning_path.in_progress? %}
+ {% include "learning_path_outline" %}
+
+ {% include "learning_path_description" %}
+
+{% else %}
+
+ {% include "learning_path_description" %}
+
+
+ {% include "learning_path_outline" %}
+
+{% endif %}
+
+{% if learning_path.instructors.any? %}
+
+ {% include "learning_path_instructors" %}
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_mobile_header.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_mobile_header.html.liquid
new file mode 100644
index 00000000..2bf66a5a
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_mobile_header.html.liquid
@@ -0,0 +1,17 @@
+
+
+ {% t shared.learning_path.title %}
+
+
+
+ {{ learning_path.name }}
+
+
+
+ {% include "learning_path_progress_and_cta" %}
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_mobile_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_mobile_view.html.liquid
new file mode 100644
index 00000000..0e22feb9
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_mobile_view.html.liquid
@@ -0,0 +1,2 @@
+{% include "learning_path_mobile_header" %}
+{% include "learning_path_mobile_content" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_new_content_banner.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_new_content_banner.html.liquid
new file mode 100644
index 00000000..f4b3eaf3
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_new_content_banner.html.liquid
@@ -0,0 +1,12 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_outline.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_outline.html.liquid
new file mode 100644
index 00000000..22ddd573
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_outline.html.liquid
@@ -0,0 +1,10 @@
+
+ {% for item in learning_path.items %}
+ {% if item.course? %}
+ {% include "learning_path_course", course: item %}
+ {% elsif item.training_event? %}
+ {% include "learning_path_training_session", training_session: item %}
+ {% endif %}
+ {% endfor %}
+ {% include "learning_path_certificate" %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_product_desktop_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_product_desktop_view.html.liquid
new file mode 100644
index 00000000..08cb6406
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_product_desktop_view.html.liquid
@@ -0,0 +1,22 @@
+{% include "learning_path_desktop_header", learning_path: product %}
+
+
+
+
+
+ {% include "learning_path_description", learning_path: product %}
+ {% include "learning_path_instructors", learning_path: product %}
+
+
+
+
+
+ {% include "product_price_and_cta"%}
+
+ {% include "learning_path_product_outline" %}
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_product_mobile_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_product_mobile_view.html.liquid
new file mode 100644
index 00000000..c42b6612
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_product_mobile_view.html.liquid
@@ -0,0 +1,34 @@
+
+ {% include "learning_path_description", learning_path: product %}
+
+
+
+ {% include "learning_path_product_outline" %}
+
+
+{% if product.instructors.any? %}
+
+ {% include "learning_path_instructors", learning_path: product %}
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_product_outline.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_product_outline.html.liquid
new file mode 100644
index 00000000..bf077377
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_product_outline.html.liquid
@@ -0,0 +1,10 @@
+
+
{% t .title %}
+ {% for item in product.learning_path_items %}
+ {% if item.course? %}
+ {% include "product_outline_course", id: forloop.index %}
+ {% elsif item.training_event? %}
+ {% include "product_outline_event", id: forloop.index %}
+ {% endif %}
+ {% endfor %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_progress_and_cta.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_progress_and_cta.html.liquid
new file mode 100644
index 00000000..0e7fb9b2
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_progress_and_cta.html.liquid
@@ -0,0 +1,23 @@
+{% if learning_path.enrolled? %}
+
+
+ {% t .progress %}
+
+
+
+
+
+
+ {% t shared.progress, count: learning_path.progress %}
+
+ {% include "product_expiration_date", date: learning_path.expiration_date %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_summary_desktop_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_summary_desktop_view.html.liquid
new file mode 100644
index 00000000..05961c52
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_summary_desktop_view.html.liquid
@@ -0,0 +1,3 @@
+{% include "learning_path_desktop_header" %}
+{% include "learning_path_banners" %}
+{% include "learning_path_desktop_content" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_summary_mobile_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_summary_mobile_view.html.liquid
new file mode 100644
index 00000000..f30a09eb
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_summary_mobile_view.html.liquid
@@ -0,0 +1,5 @@
+
+ {% include "learning_path_banners" %}
+
+{% include "learning_path_mobile_header" %}
+{% include "learning_path_mobile_content" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_training_session.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_training_session.html.liquid
new file mode 100644
index 00000000..f796cdf4
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_learning_path_training_session.html.liquid
@@ -0,0 +1,53 @@
+{% if learning_path.enrolled? and training_session.unlocked? %}
+
+
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_product_expiration_date.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_expiration_date.html.liquid
new file mode 100644
index 00000000..2d4b898b
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_expiration_date.html.liquid
@@ -0,0 +1,7 @@
+{% if date %}
+ {% capture date_format %}{% t date.formats.short_humanized %}{% endcapture %}
+ {% capture formatted_date %}{{ date | date: date_format }}{% endcapture %}
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline.html.liquid
new file mode 100644
index 00000000..4255455a
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline.html.liquid
@@ -0,0 +1,25 @@
+
+
+ {% t .header.course %}
+
+
+
+ {% for section in course.sections %}
+
+
+ {{ section.name }}
+
+
+ {% for activity in section.activities %}
+
+
+ {% include "course_activity_locked" %}
+
+
+ {% endfor %}
+
+
+ {% endfor %}
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline_course.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline_course.html.liquid
new file mode 100644
index 00000000..594cc2de
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline_course.html.liquid
@@ -0,0 +1,82 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline_event.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline_event.html.liquid
new file mode 100644
index 00000000..aaa38f41
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline_event.html.liquid
@@ -0,0 +1,49 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline_lp.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline_lp.html.liquid
new file mode 100644
index 00000000..87106e09
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_outline_lp.html.liquid
@@ -0,0 +1,65 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_product_price_and_cta.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_price_and_cta.html.liquid
new file mode 100644
index 00000000..c0221597
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_product_price_and_cta.html.liquid
@@ -0,0 +1,12 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_search_result.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_search_result.html.liquid
new file mode 100644
index 00000000..5c2a4991
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_search_result.html.liquid
@@ -0,0 +1,19 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_search_zero_state.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_search_zero_state.html.liquid
new file mode 100644
index 00000000..9b76d980
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_search_zero_state.html.liquid
@@ -0,0 +1,13 @@
+
+
+
+
+ {% t .nothing_found %}
+
+
+ {% t .empty %}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_sub_navigation.html.liquid
new file mode 100644
index 00000000..ab92bc30
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_sub_navigation.html.liquid
@@ -0,0 +1,13 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_desktop_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_desktop_view.html.liquid
new file mode 100644
index 00000000..76ac434a
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_desktop_view.html.liquid
@@ -0,0 +1,42 @@
+
+ {% include "training_session_header" %}
+
+
+
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+
+
+ {% include "training_session_details" %}
+
+
+
+
+ {% include "training_session_description" %}
+
+
+
+
+
+
+ {% t shared.more_sessions %}
+
+ {% if training_event.sessions.size > 1 %}
+ {% include "training_session_more_sessions" %}
+ {% else %}
+
+
+
+ {% t .empty %}
+
+
+ {% endif %}
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_mobile_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_mobile_view.html.liquid
new file mode 100644
index 00000000..f6a7b959
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_mobile_view.html.liquid
@@ -0,0 +1,23 @@
+
+
+ {% include "training_session_header" %}
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+ {% include "training_session_details" %}
+ {% include "training_session_description" %}
+
+
+ {% if training_event.sessions.size > 1 %}
+
+
+
+ {% t shared.more_sessions %}
+
+ {% include "training_session_more_sessions" %}
+
+
+ {% endif %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_desktop_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_desktop_view.html.liquid
new file mode 100644
index 00000000..be9b996a
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_desktop_view.html.liquid
@@ -0,0 +1,42 @@
+
+ {% include "training_session_header" %}
+
+
+
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+
+
+ {% include "training_session_details" %}
+
+
+
+
+ {% include "training_session_description" %}
+
+
+
+
+
+
+ {% t shared.more_sessions %}
+
+ {% if training_event.sessions.size > 0 %}
+ {% include "training_event_preview_more_sessions" %}
+ {% else %}
+
+
+
+ {% t themes.default._training_event_desktop_view.empty %}
+
+
+ {% endif %}
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_mobile_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_mobile_view.html.liquid
new file mode 100644
index 00000000..84323a09
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_mobile_view.html.liquid
@@ -0,0 +1,23 @@
+
+
+ {% include "training_session_header" %}
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+ {% include "training_session_details" %}
+ {% include "training_session_description" %}
+
+
+ {% if training_event.sessions.size > 0 %}
+
+
+
+ {% t shared.more_sessions %}
+
+ {% include "training_event_preview_more_sessions" %}
+
+
+ {% endif %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_more_sessions.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_more_sessions.html.liquid
new file mode 100644
index 00000000..a81c888a
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_more_sessions.html.liquid
@@ -0,0 +1,3 @@
+{% for session in training_event.sessions %}
+ {% include "training_event_preview_session_tile", current_session: training_session %}
+{% endfor %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_session_tile.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_session_tile.html.liquid
new file mode 100644
index 00000000..7a09cc33
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_event_preview_session_tile.html.liquid
@@ -0,0 +1,18 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_dashboard.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_dashboard.html.liquid
new file mode 100644
index 00000000..7aeb19ce
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_dashboard.html.liquid
@@ -0,0 +1,9 @@
+
+ {% if training_events.enrolled.any? %}
+ {% for training_event in training_events.enrolled %}
+ {% include "cards_training_event" with training_event %}
+ {% endfor %}
+ {% else %}
+ {% include "training_events_zero_state" %}
+ {% endif %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_filter.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_filter.html.liquid
new file mode 100644
index 00000000..d4892278
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_filter.html.liquid
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_index.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_index.html.liquid
new file mode 100644
index 00000000..ff93b1c8
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_index.html.liquid
@@ -0,0 +1,13 @@
+
+ {% if training_events.available.any? %}
+
+ {% for training_event in training_events.available %}
+
+ {% include "cards_training_event" with training_event %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_zero_state.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_zero_state.html.liquid
new file mode 100644
index 00000000..076b789e
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_events_zero_state.html.liquid
@@ -0,0 +1,9 @@
+
+
+ {% t .empty %}
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_calendars.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_calendars.html.liquid
new file mode 100644
index 00000000..6c758b73
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_calendars.html.liquid
@@ -0,0 +1,52 @@
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_cta.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_cta.html.liquid
new file mode 100644
index 00000000..5f959556
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_cta.html.liquid
@@ -0,0 +1,35 @@
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_date.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_date.html.liquid
new file mode 100644
index 00000000..860040fe
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_date.html.liquid
@@ -0,0 +1,16 @@
+
+
+
+
+ {{ training_session.day }}
+
+
+
+ {{ training_session.month }}
+
+
+ {{ training_session.year }}
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_description.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_description.html.liquid
new file mode 100644
index 00000000..f8c165ba
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_description.html.liquid
@@ -0,0 +1,6 @@
+
+ {% t .header %}
+
+
+ {{ training_event.description }}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_desktop_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_desktop_view.html.liquid
new file mode 100644
index 00000000..d689ade2
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_desktop_view.html.liquid
@@ -0,0 +1,43 @@
+
+ {% include "training_session_header" %}
+
+
+
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+
+
+ {% include "training_session_details" %}
+ {% include "training_session_cta" %}
+
+
+
+
+ {% include "training_session_description" %}
+
+
+
+
+
+
+ {% t shared.more_sessions %}
+
+ {% if training_event.sessions.size > 1 %}
+ {% include "training_session_more_sessions" %}
+ {% else %}
+
+
+
+ {% t .empty %}
+
+
+ {% endif %}
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_details.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_details.html.liquid
new file mode 100644
index 00000000..64a925b7
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_details.html.liquid
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+ {% if training_session.approved? and training_session.location %}
+
+
+ {{ training_session.location }}
+
+ {% endif %}
+
+ {% if training_session.approved? and training_session.session_url %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_header.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_header.html.liquid
new file mode 100644
index 00000000..fdfdf380
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_header.html.liquid
@@ -0,0 +1,7 @@
+
+ {% t shared.event_types, key: training_event.event_type %}
+
+
+
+ {{ training_event.title }}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_mobile_view.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_mobile_view.html.liquid
new file mode 100644
index 00000000..3270d65d
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_mobile_view.html.liquid
@@ -0,0 +1,27 @@
+
+
+ {% include "training_session_header" %}
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+ {% include "training_session_details" %}
+
+ {% include "training_session_cta" %}
+
+ {% include "training_session_description" %}
+
+
+ {% if training_event.sessions.size > 1 %}
+
+
+
+ {% t shared.more_sessions %}
+
+ {% include "training_session_more_sessions" %}
+
+
+ {% endif %}
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_more_sessions.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_more_sessions.html.liquid
new file mode 100644
index 00000000..6cfafa87
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_more_sessions.html.liquid
@@ -0,0 +1,3 @@
+{% for session in training_event.sessions %}
+ {% include "training_session_tile", current_session: training_session %}
+{% endfor %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_status.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_status.html.liquid
new file mode 100644
index 00000000..75116282
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/_training_session_status.html.liquid
@@ -0,0 +1,6 @@
+
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/account.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/account.html.liquid
new file mode 100644
index 00000000..df96f9b6
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/account.html.liquid
@@ -0,0 +1,15 @@
+{% include "header" %}
+{% include "account_tabs" %}
+
+
+
+ {% include "account_mobile_view", form: form %}
+
+
+
+ {% include "account_desktop_view", form: form %}
+
+
+
+{% include "footer" %}
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_email.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_email.html.liquid
new file mode 100644
index 00000000..a413959c
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_email.html.liquid
@@ -0,0 +1,59 @@
+
+
+ {% include "header_minimal" %}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_employee.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_employee.html.liquid
new file mode 100644
index 00000000..c8d8adf7
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_employee.html.liquid
@@ -0,0 +1,59 @@
+
+
+ {% include "header_minimal" %}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_phone_number.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_phone_number.html.liquid
new file mode 100644
index 00000000..aafae119
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_phone_number.html.liquid
@@ -0,0 +1,40 @@
+
+
+ {% include "header_minimal" %}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_terms.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_terms.html.liquid
new file mode 100644
index 00000000..a7087db2
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/auth_url_terms.html.liquid
@@ -0,0 +1,74 @@
+
+
+ {% include "header_minimal" %}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/bundle_product.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/bundle_product.html.liquid
new file mode 100644
index 00000000..734327e5
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/bundle_product.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "bundle_product_desktop_view" %}
+
+
+ {% include "bundle_product_mobile_view" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/catalog.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/catalog.html.liquid
new file mode 100644
index 00000000..d7b380b8
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/catalog.html.liquid
@@ -0,0 +1,23 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.in_catalog %}
+{% include "sub_navigation" %}
+
+
+ {% include "courses_catalog" %}
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_cart.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_cart.html.liquid
new file mode 100644
index 00000000..2f75af33
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_cart.html.liquid
@@ -0,0 +1,7 @@
+{% include "header" %}
+
+
+ {% commerce_cart %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_catalog.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_catalog.html.liquid
new file mode 100644
index 00000000..94d32dfa
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_catalog.html.liquid
@@ -0,0 +1,28 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.in_catalog %}
+{% include "sub_navigation" %}
+
+
+
+
{{ catalog.headline }}
+
{{ catalog.subheadline }}
+
+
+ {% if catalog.any? %}
+
+ {% for item in catalog.items %}
+
+ {% include "cards_catalog_item" with item %}
+
+ {% endfor %}
+
+ {% else %}
+ {% capture message %}
+ {% t shared.zero_state.courses.catalog,
+ key: current_school.course_vocabulary
+ %}
+ {% endcapture %}
+ {% include "courses_zero_state", message: message %}
+ {% endif %}
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_checkout.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_checkout.html.liquid
new file mode 100644
index 00000000..96d540b6
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_checkout.html.liquid
@@ -0,0 +1,7 @@
+{% include "header" %}
+
+
+ {% commerce_checkout %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_order_details.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_order_details.html.liquid
new file mode 100644
index 00000000..a12b7245
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_order_details.html.liquid
@@ -0,0 +1,7 @@
+{% include "header" %}
+
+
+ {% commerce_order_details %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_order_history.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_order_history.html.liquid
new file mode 100644
index 00000000..031f5eac
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_order_history.html.liquid
@@ -0,0 +1,8 @@
+{% include "header" %}
+{% include "account_tabs" %}
+
+
+ {% commerce_order_history %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_redeem.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_redeem.html.liquid
new file mode 100644
index 00000000..58260bac
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_redeem.html.liquid
@@ -0,0 +1,7 @@
+{% include "header" %}
+
+
+ {% commerce_redeem %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_return.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_return.html.liquid
new file mode 100644
index 00000000..e8ea847b
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/commerce_return.html.liquid
@@ -0,0 +1,7 @@
+{% include "header" %}
+
+
+ {% commerce_return %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/course.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/course.html.liquid
new file mode 100644
index 00000000..d77e09ba
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/course.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "course_desktop_view" %}
+
+
+ {% include "course_mobile_view" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/course_product.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/course_product.html.liquid
new file mode 100644
index 00000000..05e06883
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/course_product.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "course_product_desktop_view" %}
+
+
+ {% include "course_product_mobile_view" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/courses.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/courses.html.liquid
new file mode 100644
index 00000000..ef34b59a
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/courses.html.liquid
@@ -0,0 +1,11 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.enrolled %}
+{% include "sub_navigation" %}
+
+
+ {% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %}
+
+
{% t .headline, key: current_school.course_vocabulary %}
+ {% include "courses_index", class: "col-xs-12 col-sm-6 col-lg-4 np-stretch-content" %}
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/dashboard.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/dashboard.html.liquid
new file mode 100644
index 00000000..f5c8e7df
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/dashboard.html.liquid
@@ -0,0 +1,28 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.enrolled %}
+{% include "sub_navigation" %}
+
+
+ {% t .empty, key: current_school.course_vocabulary %}
+
+
+
+ {% endif %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/learning_path.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/learning_path.html.liquid
new file mode 100644
index 00000000..5cbb5a93
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/learning_path.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "learning_path_desktop_view" %}
+
+
+ {% include "learning_path_mobile_view" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/learning_path_product.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/learning_path_product.html.liquid
new file mode 100644
index 00000000..3d613e2a
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/learning_path_product.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "learning_path_product_desktop_view" %}
+
+
+ {% include "learning_path_product_mobile_view" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/learning_path_summary.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/learning_path_summary.html.liquid
new file mode 100644
index 00000000..99ae32ed
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/learning_path_summary.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "learning_path_summary_desktop_view" %}
+
+
+ {% include "learning_path_summary_mobile_view" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/learning_paths.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/learning_paths.html.liquid
new file mode 100644
index 00000000..e6e10cba
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/learning_paths.html.liquid
@@ -0,0 +1,14 @@
+{% include "header" %}
+{% include "sub_navigation" %}
+
+
+
+ {% t shared.learning_paths %}
+
+
+ {% t .subtitle %}
+
+ {% include "learning_paths_index", items: learning_paths.available %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/login.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/login.html.liquid
new file mode 100644
index 00000000..bde185dd
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/login.html.liquid
@@ -0,0 +1,53 @@
+
+
+ {% include "header_minimal" %}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/master.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/master.html.liquid
new file mode 100644
index 00000000..63345068
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/master.html.liquid
@@ -0,0 +1 @@
+{% body %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/not_found.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/not_found.html.liquid
new file mode 100644
index 00000000..91c76e4b
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/not_found.html.liquid
@@ -0,0 +1,10 @@
+
+
+
+ {% t .header %}
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/private_certificate.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/private_certificate.html.liquid
new file mode 100644
index 00000000..15d05419
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/private_certificate.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+{% include "certificates_top_bar" %}
+
+
+
+ {% include "certificates_preview" %}
+ {% include "certificates_info_column" %}
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/public_certificate.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/public_certificate.html.liquid
new file mode 100644
index 00000000..15d05419
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/public_certificate.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+{% include "certificates_top_bar" %}
+
+
+
+ {% include "certificates_preview" %}
+ {% include "certificates_info_column" %}
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/reset_password.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/reset_password.html.liquid
new file mode 100644
index 00000000..281c6eaa
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/reset_password.html.liquid
@@ -0,0 +1,43 @@
+
+
+ {% include "header_minimal" %}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/search.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/search.html.liquid
new file mode 100644
index 00000000..01684399
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/search.html.liquid
@@ -0,0 +1,27 @@
+{% include "header" %}
+
+
+ {% t .title %}
+
+
+
+ {% t .showing %}
+ {{ results.count }}
+ {% t .results_for %}
+ "{{ results.term }}"
+
+ {% if results.items.any? %}
+ {% render "search_result" for results.items as result %}
+ {% else %}
+ {% include "search_zero_state" %}
+ {% endif %}
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/sign_up.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/sign_up.html.liquid
new file mode 100644
index 00000000..7a903da4
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/sign_up.html.liquid
@@ -0,0 +1,72 @@
+
+
+ {% include "header_minimal" %}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/styles.css.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/styles.css.liquid
new file mode 100644
index 00000000..d09eb831
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/styles.css.liquid
@@ -0,0 +1,18 @@
+ /*
+ Put your custom overlay styles in here
+ You can use your northpass color palette in this file
+
+{{ color_palette.button_font_color }}
+{{ color_palette.button_color }}
+{{ color_palette.button_hover_color }}
+{{ color_palette.header_font_color }}
+{{ color_palette.header_font_hover_color }}
+{{ color_palette.header_color }}
+*/
+
+
+/*
+header.np-header {
+ display: none;
+}
+*/
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/training_event_preview.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/training_event_preview.html.liquid
new file mode 100644
index 00000000..1645bc57
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/training_event_preview.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "training_event_preview_desktop_view", training_session: training_event %}
+
+
+ {% include "training_event_preview_mobile_view", training_session: training_event %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/training_events.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/training_events.html.liquid
new file mode 100644
index 00000000..139717ee
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/training_events.html.liquid
@@ -0,0 +1,19 @@
+{% include "header" %}
+{% include "sub_navigation" %}
+
+
+
+
+ {% t .title %}
+
+
+ {% t .subtitle %}
+
+
+
+ {% include "training_events_filter" %}
+
+
+ {% include "training_events_index" %}
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/training_session.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/training_session.html.liquid
new file mode 100644
index 00000000..5b78b834
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/training_session.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "training_session_desktop_view" %}
+
+
+ {% include "training_session_mobile_view" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/EmailMonkey with PX/training_session_attendance.html.liquid b/Custom_Templates/customer_templates/EmailMonkey with PX/training_session_attendance.html.liquid
new file mode 100644
index 00000000..e6a0ec1c
--- /dev/null
+++ b/Custom_Templates/customer_templates/EmailMonkey with PX/training_session_attendance.html.liquid
@@ -0,0 +1,43 @@
+{% include "header" %}
+
+
+{% include "footer" %}
+
+{% comment %} {% include "header" %}
@@ -346,4 +377,4 @@
}
});
});
-
\ No newline at end of file
+ {% endcomment %}
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Gainsight University/gainsight-nxt-admin-certificate.html.liquid b/Custom_Templates/customer_templates/Gainsight University/gainsight-nxt-admin-certificate.html.liquid
index e889af98..41879ea9 100644
--- a/Custom_Templates/customer_templates/Gainsight University/gainsight-nxt-admin-certificate.html.liquid
+++ b/Custom_Templates/customer_templates/Gainsight University/gainsight-nxt-admin-certificate.html.liquid
@@ -18,12 +18,11 @@
If you're an Administrator for Gainsight Salesforce Edition, listen to this 30-minute recording of what's different between Salesforce Edition and NXT.
If you have additional questions, please feel free to check out our FAQs.
{% include "messages" %}
+
diff --git a/Scripts/API_Tests/Apikeys.py b/Scripts/API_Tests/Apikeys.py
index cbc398c2..0743b56c 100644
--- a/Scripts/API_Tests/Apikeys.py
+++ b/Scripts/API_Tests/Apikeys.py
@@ -33,3 +33,4 @@ GSU = "rUUKNuBZ0rmRNPftB4smYhQ5L"
EMPLOY = "qcNggCm4SBtC0gTqLGv30vX8l"
LUMAFINTECH = "oDFA7XSmjEKjEwIDIKLm0rxs1"
SUPPLIERPROD = "DtRH9m4r0zMbJEx1yWBGKlObi"
+DEEPL = "fo5uOoG9FNNGQ6lZkenmZVIzq"
diff --git a/Scripts/API_Tests/__pycache__/Apikeys.cpython-310.pyc b/Scripts/API_Tests/__pycache__/Apikeys.cpython-310.pyc
index 33ebff38..3a7ab0bc 100644
Binary files a/Scripts/API_Tests/__pycache__/Apikeys.cpython-310.pyc and b/Scripts/API_Tests/__pycache__/Apikeys.cpython-310.pyc differ
diff --git a/Scripts/API_Tests/bulk_invite_and_props.py b/Scripts/API_Tests/bulk_invite_and_props.py
index 0dfca702..7d910f85 100644
--- a/Scripts/API_Tests/bulk_invite_and_props.py
+++ b/Scripts/API_Tests/bulk_invite_and_props.py
@@ -11,7 +11,7 @@ HEADERS = {
"X-Api-Key": APIKEY,
}
BASEURL = "https://api.northpass.com/v2/"
-IMPORTFILE = "/Users/normrasmussen/Downloads/cisa-21125.csv"
+IMPORTFILE = "/Users/normrasmussen/Downloads/cisa-22525.csv"
def bulk_invite_and_group():
diff --git a/Tasks.md b/Tasks.md
index 89d2f521..bce54eaa 100644
--- a/Tasks.md
+++ b/Tasks.md
@@ -1,4 +1,17 @@
+Pipedrive - new courses for sales manager
+impact is big if people interact with the academy
+login issue solved
+later in the year looking to leverage other capabilities
+badges & certs
+
+
+academy is referenced in trial experience but just a supporting tool
+NPC stage - what is that?
+
+PX teething problems:wq
+Want to use PX in CE and cross pollinate all tools
+CommandBar
+Amplitude
+
+Reach out to Oksana - have strategy of what they want to look at in Q3 of this year
- - [-] This is a Task. $id{6db2614d-0d12-4fc7-9ccb-2287e1db8c00}
- - [ ] This is a sub task $id{4d513a08-198b-45bb-9e08-cd9b539ac50a}
- - [ ] This is another subtask $id{a1a58887-7b24-480f-a2e3-485fa83563e4}