+ {% endif %}
+
+ {% comment %} Show this section if either the event section or learning path section has content {% endcomment %}
+ {% if show_learning_paths_section or show_events_section %}
+
+
+
+ {% if show_learning_paths_section %}
+
+
+ Learning Paths
+
+ {% include "learning_paths_index", items: learning_paths.enrolled, card_classes: learning_path_card_classes %}
+
+ {% endif %}
+
+ {% if show_events_section %}
+
+
+ Upcoming Events
+
+ {% include "training_events_dashboard", card_classes: event_card_classes %}
+
+ {% endif %}
+
+
+
+ {% endif %}
+
+ {% if courses.enrolled and courses.enrolled.any? %}
+
+ {% for course in courses.enrolled %}
+ {% for category in course.categories %}
+ {% if category.name == 'Partner Training' %}
+ {% include "cards_course", course: course, card_classes: card_classes %}
+ {% endif %}
+ {% endfor %}
+
+ {% endfor %}
+
+
+
+{% include "footer" %}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_cards_course.html.liquid
new file mode 100644
index 00000000..f8f699d0
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_cards_course.html.liquid
@@ -0,0 +1,46 @@
+
+
+
+ {% if course.ribbon and course.ribbon.size > 0 %}
+
+ {{ course.ribbon }}
+
+ {% endif %}
+
+
+
+ {{ course.name }}
+
+ {% if course.instructor_names and course.instructor_names.size > 0 %}
+
+ {{ course.instructor_names }}
+
+ {% endif %}
+ {% if course.short_description and course.short_description.size > 0 %}
+
+{% endfor %}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_course_header.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_course_header.html.liquid
new file mode 100644
index 00000000..21bc4502
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_course_header.html.liquid
@@ -0,0 +1,6 @@
+
+ {{ course.name }}
+
+
+ {% include "course_cta_button" %}
+
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_course_instructors.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_course_instructors.html.liquid
new file mode 100644
index 00000000..851e2719
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_course_instructors.html.liquid
@@ -0,0 +1,26 @@
+
+ Instructors
+
+
+ {% for instructor in course.instructors %}
+
+
+
+
+ {{ instructor.name }}
+
+
+ {% if instructor.title and instructor.title.size > 0 %}
+
+ {{ instructor.title }}
+
+ {% endif %}
+
+
+
+ {% endfor %}
+
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_course_outline.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_course_outline.html.liquid
new file mode 100644
index 00000000..d77c2984
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_course_outline.html.liquid
@@ -0,0 +1,57 @@
+
+
+ Outline
+
+
+
+ {% for section in course.sections %}
+
+
+ {{ section.name }}
+
+
+ {% for activity in section.activities %}
+
+
+
+
+
+ {% comment %} If the activity is locked show a locked icon and then a text title {% endcomment %}
+ {% if activity.locked? %}
+
+ {% include "course_activity_locked" %}
+
+ {% comment %} If the user is not enrolled in the course show a text title {% endcomment %}
+ {% elsif course.enrolled? == false %}
+ {% include "course_activity_locked" %}
+
+ {% comment %} Otherwise include a link {% endcomment %}
+ {% else %}
+ {% include "course_activity_unlocked", activity_classes: "np-course-outline-content-activity-link-completed" %}
+ {% endif %}
+
+
+
+ {% endfor %}
+
+
+ {% endfor %}
+
+
+
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_course_progress_and_cta.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_course_progress_and_cta.html.liquid
new file mode 100644
index 00000000..cf0394d8
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_course_progress_and_cta.html.liquid
@@ -0,0 +1,23 @@
+
+
+ {% include "course_cta_button" %}
+
+
+
+ Progress
+
+
+
+
+
+
+
+ {{ course.progress }}% Complete
+
+
+
+
+ {% include "course_cta_button" %}
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_course_version_outdated_popup.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_course_version_outdated_popup.html.liquid
new file mode 100644
index 00000000..6da1a9c2
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_course_version_outdated_popup.html.liquid
@@ -0,0 +1,49 @@
+
+ {% endif %}
+
+ {% comment %} Show this section if either the event section or learning path section has content {% endcomment %}
+ {% if show_learning_paths_section or show_events_section %}
+
+
+
+ {% if show_learning_paths_section %}
+
+
+ Learning Paths
+
+ {% include "learning_paths_index", items: learning_paths.enrolled, card_classes: learning_path_card_classes %}
+
+ {% endif %}
+
+ {% if show_events_section %}
+
+
+ Upcoming Events
+
+ {% include "training_events_dashboard", card_classes: event_card_classes %}
+
+
+
+{% include "footer" %}
+}}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_courses_sec3_index.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_courses_sec3_index.html.liquid
new file mode 100644
index 00000000..0029d8ca
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_courses_sec3_index.html.liquid
@@ -0,0 +1,20 @@
+{% if courses.enrolled and courses.enrolled.any? %}
+
+ {% for course in courses.enrolled %}
+ {% for category in course.categories %}
+ {% if category.name == 'Section 3' %}
+ {% include "cards_course", course: course, card_classes: card_classes %}
+ {% endif %}
+ {% endfor %}
+
+ {% endfor %}
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_header_mobile_menu_item.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_header_mobile_menu_item.html.liquid
new file mode 100644
index 00000000..f5262cfa
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_header_mobile_menu_item.html.liquid
@@ -0,0 +1,8 @@
+
+ {{ label }}
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_learning_path_course.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_course.html.liquid
new file mode 100644
index 00000000..6c7ff4dc
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_course.html.liquid
@@ -0,0 +1,63 @@
+{% comment %} Determine if the item should be a link or not {% endcomment %}
+{% if learning_path.enrolled? and course.unlocked? %}
+ {% assign element_type = "a" %}
+{% else %}
+ {% assign element_type = "div" %}
+{% endif %}
+
+
+
+ {% if course.instructors and course.instructors.size > 0 %}
+
+ {{ course.instructors }}
+
+ {% endif %}
+
+
+
+ {% comment %} Use a different icon based on the state of the learning path and course {% endcomment %}
+ {% if course.completed? %}
+
+
+
+ {% elsif element_type == "div" %}
+
+
+
+ {% else %}
+
+
+
+ {% endif %}
+
+
+
+ {{ element_type }}>
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_learning_path_cta_button.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_cta_button.html.liquid
new file mode 100644
index 00000000..7869c7b7
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_cta_button.html.liquid
@@ -0,0 +1,22 @@
+
+ {% if learning_path.enrolled? == false %}
+ Enroll in Learning Path
+ {% elsif learning_path.started? == false %}
+ Start Learning Path
+ {% elsif learning_path.completed? %}
+ View Learning Path
+ {% else %}
+ Continue Learning Path
+ {% endif %}
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_learning_path_description.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_description.html.liquid
new file mode 100644
index 00000000..fad37af1
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_description.html.liquid
@@ -0,0 +1,6 @@
+
+ About This Guide
+
+
+ {{ learning_path.description }}
+
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_learning_path_instructors.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_instructors.html.liquid
new file mode 100644
index 00000000..3a6303d0
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_instructors.html.liquid
@@ -0,0 +1,27 @@
+
+ Instructors
+
+
+ {% for instructor in learning_path.instructors %}
+
+
+
+
+ {{ instructor.name }}
+
+
+ {% assign instructor_title_size = instructor.title | size %}
+ {% if instructor.title and instructor.title.size > 0 %}
+
+ {{ instructor.title }}
+
+ {% endif %}
+
+
+
+ {% endfor %}
+
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_learning_path_outline.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_outline.html.liquid
new file mode 100644
index 00000000..49cebb48
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_outline.html.liquid
@@ -0,0 +1,9 @@
+
+ {% 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 %}
+
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_learning_path_progress_and_cta.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_progress_and_cta.html.liquid
new file mode 100644
index 00000000..d48c5204
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_progress_and_cta.html.liquid
@@ -0,0 +1,23 @@
+
+
+ {% include "learning_path_cta_button" %}
+
+
+
+ Progress
+
+
+
+
+
+
+
+ {{ learning_path.progress }}% Complete
+
+
+
+
+ {% include "learning_path_cta_button" %}
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_learning_path_training_session.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_training_session.html.liquid
new file mode 100644
index 00000000..d0270c50
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_learning_path_training_session.html.liquid
@@ -0,0 +1,57 @@
+{% if learning_path.enrolled? and training_session.unlocked? %}
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_training_events_dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_training_events_dashboard.html.liquid
new file mode 100644
index 00000000..7ce1aead
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_training_events_dashboard.html.liquid
@@ -0,0 +1,5 @@
+
+ {% for training_event in training_events.enrolled %}
+ {% include "cards_training_event", training_event: training_event, card_classes: card_classes %}
+ {% endfor %}
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_training_events_index.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_training_events_index.html.liquid
new file mode 100644
index 00000000..91d9502d
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_training_events_index.html.liquid
@@ -0,0 +1,11 @@
+
+ {% if training_events.available and training_events.available.any? %}
+
+ {% for training_event in training_events.available %}
+ {% include "cards_training_event", training_event: training_event, card_classes: "col-x-sm-6 col-sm-6 col-md-4" %}
+ {% endfor %}
+
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_training_session_cta.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_training_session_cta.html.liquid
new file mode 100644
index 00000000..7c3529da
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_training_session_cta.html.liquid
@@ -0,0 +1,31 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_training_session_date.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_training_session_date.html.liquid
new file mode 100644
index 00000000..c19c6053
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_training_session_date.html.liquid
@@ -0,0 +1,12 @@
+
+
+ {{ training_session.day }}
+
+
+
+ {{ training_session.month }}
+
+
+ {{ training_session.year }}
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_training_session_desktop_view.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_training_session_desktop_view.html.liquid
new file mode 100644
index 00000000..89701b37
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_training_session_desktop_view.html.liquid
@@ -0,0 +1,73 @@
+{% include "header", current_page_orgin: "training_events" %}
+
+
+
+
+
+
+
+
+ {{ training_event.title }}
+
+
+
+ {% case training_event.event_type %}
+ {% when "online" %}
+
+ Online Event
+ {% when "in_person" %}
+
+ In-Person Event
+ {% endcase %}
+
+
+
+
+
+
+ {% if training_event.description and training_event.description.size > 0 %}
+ {% include "training_session_description" %}
+ {% endif %}
+
+
+
+
+
+
+
+
+
+
+
+
+ {% include "training_session_details" %}
+ {% include "training_session_cta" %}
+
+
+
+
+
+
+ {% t shared.more_sessions %}
+
+ {% if training_event.sessions and training_event.sessions.size > 1 %}
+ {% include "training_session_more_sessions" %}
+ {% else %}
+
+
+
+ {% t .empty %}
+
+
+ {% endif %}
+
+
+
+
+
+
+
+{% include "footer" %}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/_training_session_details.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/_training_session_details.html.liquid
new file mode 100644
index 00000000..5d64b632
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/_training_session_details.html.liquid
@@ -0,0 +1,60 @@
+
+ {% include "training_session_date", training_session: training_session %}
+
+ {% if training_session.approved? %}
+
+ {% if training_session.instructor and training_session.instructor.size > 0 %}
+
+
+ {{ training_session.instructor }}
+
+ {% endif %}
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/course.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/course.html.liquid
new file mode 100644
index 00000000..51f56668
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/course.html.liquid
@@ -0,0 +1,47 @@
+{% include "header", current_page_orgin: "catalog" %}
+
+
+ {% comment %} Get the full size background image by removing the modifier from the URL {% endcomment %}
+ {% assign course_image_full_size = course.image_url | replace: '/resize=width:820,height:500,fit:crop/', '/' %}
+
+
+
+
+
+ {% include "course_header" %}
+
+
+
+
+ {% if course.full_description and course.full_description.size > 0 %}
+ {% include "course_description" %}
+ {% endif %}
+
+
+ {% if course.enrolled? and course.started? %}
+ {% include "course_progress_and_cta" %}
+ {% else %}
+ {% include "course_cta_button" %}
+ {% endif %}
+
+
+ {% if course.instructors and course.instructors.any? %}
+
+ {% include "course_instructors" %}
+
+ {% endif %}
+
+ {% include "course_outline" %}
+
+ {% if course.events and course.events.any? %}
+
+
+{% include "footer" %}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/courses.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/courses.html.liquid
new file mode 100644
index 00000000..b61376a6
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/courses.html.liquid
@@ -0,0 +1,17 @@
+{% include "header", current_page_orgin: "courses" %}
+{% include "sub_navigation", current_page: "/app/courses" %}
+
+
+ All Courses
+
+
+ {% capture subtitle_text %}
+ {%comment%}{% t .headline, key: current_school.course_vocabulary %}{%endcomment%}
+ These are all courses you are enrolled in
+ {% endcapture %}
+ {{ subtitle_text | replace: "Courses", "tutorials" }}
+
+
+ {% include "courses_index", card_classes: "col-xs-12 col-sm-6 col-lg-4 np-stretch-content" %}
+
+{% include "footer" %}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/dashboard.html.liquid
new file mode 100644
index 00000000..ea8e152c
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/dashboard.html.liquid
@@ -0,0 +1,103 @@
+{% comment %} Initialize Variables {% endcomment %}
+{% assign show_learning_paths_section = false %}
+{% assign show_events_section = false %}
+{% assign learning_path_section_classes = "" %}
+{% assign event_section_classes = "" %}
+{% assign learning_path_card_classes = "col-md-6" %}
+{% assign event_card_classes = "col-x-sm-6 col-sm-6 col-md-4 col-lg-3" %}
+
+{% comment %} Determine if learning paths are enabled and the user is enrolled in at least one learning path {% endcomment %}
+{% if features.learning_paths? and learning_paths.enrolled and learning_paths.enrolled.any? %}
+ {% assign show_learning_paths_section = true %}
+{% endif %}
+
+{% comment %} Determine if events are enabled and the user is registered for at least one event {% endcomment %}
+{% if features.training_events? and training_events.enrolled and training_events.enrolled.any? %}
+ {% assign show_events_section = true %}
+{% endif %}
+
+{% comment %} Determine whether special classes need to be added to non course sections and the cards within {% endcomment %}
+{% if show_learning_paths_section %}
+ {% assign learning_path_section_classes = "col-md-8 col-lg-6" %}
+ {% assign learning_path_card_classes = "" %}
+{% endif %}
+
+{%if show_events_section%}
+ {% assign event_section_classes = "col-md-4 col-lg-6" %}
+ {% assign event_card_classes = "col-x-sm-6 col-sm-6 col-md-12 col-lg-6" %}
+{%endif%}
+
+{% include "header", current_page_orgin: "dashboard" %}
+
+
+
+
My Dashboard
+
+
+
+
+
+
+ {% comment %} Show the first featured course as a banner {% endcomment %}
+ {% if courses.featured and courses.featured.any? %}
+
+ {% endif %}
+
+ {% comment %} Show this section if either the event section or learning path section has content {% endcomment %}
+ {% if show_learning_paths_section or show_events_section %}
+
+
+
+ {% if show_learning_paths_section %}
+
+
+ Learning Paths
+
+ {% include "learning_paths_index", items: learning_paths.enrolled, card_classes: learning_path_card_classes %}
+
+ {% endif %}
+
+ {% if show_events_section %}
+
+
+ Upcoming Events
+
+ {% include "training_events_dashboard", card_classes: event_card_classes %}
+
+ {% endif %}
+
+
+
+ {% endif %}
+
+
+
+ My Courses
+
+ {% if courses.enrolled and courses.enrolled.any? %}
+
+ {% for course in courses.enrolled %}
+ {% for category in course.categories %}
+ {% if category.name == 'Partner Training' %}
+ {% include "cards_course", course: course, card_classes: card_classes %}
+ {% endif %}
+ {% endfor %}
+
+ {% endfor %}
+
+
+{% include "footer" %}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/homepage.html.liquid
new file mode 100644
index 00000000..f7d973db
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/homepage.html.liquid
@@ -0,0 +1,97 @@
+{% include "header", current_page_orgin: "false" %}
+
+
+
+
+ {{ homepage.headline }}
+
+
+ Hi {{ current_person.name }}, how is the weather in {{ current_person.properties.location }}?
+ Here is the training you are eligible for in your role as {{ current_person.properties.role }}.
+
+
+
+
+
+
+
+ {% if courses.featured and courses.featured.any? %}
+
+
+ {% comment %} Show featured section text if either headline or subheadline are defined {% endcomment %}
+ {% if homepage.featured_courses_headline and homepage.featured_courses_headline.size > 0 %}
+ {% assign has_featured_headline = true %}
+ {% else %}
+ {% assign has_featured_headline = false %}
+ {% endif %}
+ {% if homepage.featured_courses_subheadline and homepage.featured_courses_subheadline.size > 0 %}
+ {% assign has_featured_subheadline = true %}
+ {% else %}
+ {% assign has_featured_subheadline = false %}
+ {% endif %}
+ {% if has_featured_headline or has_featured_subheadline %}
+
+ {% if homepage.featured_courses_headline and homepage.featured_courses_headline.size > 0 %}
+
+ {{ homepage.featured_courses_headline }}
+
+ {% endif %}
+ {% if homepage.featured_courses_subheadline and homepage.featured_courses_subheadline.size > 0 %}
+
+ {{ homepage.featured_courses_subheadline }}
+
+ {% endif %}
+
+ {% endif %}
+
+
+ {% comment %} Add different classes dependant on the number of featured courses. {% endcomment %}
+ {% assign card_classes = "card--horizontal np-stretch-content" %}
+ {% case courses.featured.size %}
+ {% when 3 %}
+ {% assign card_classes = card_classes | append: " col-lg-4" %}
+ {% when 2 %}
+ {% assign card_classes = card_classes | append: " col-md-6" %}
+ {% endcase %}
+
+ {% for course in courses.featured %}
+ {% include "cards_course", course: course, card_classes: card_classes %}
+ {% endfor %}
+
+
+ {% endif %}
+
+
+
+{% include "footer" %}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/learning_path.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/learning_path.html.liquid
new file mode 100644
index 00000000..a6f31f1d
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/learning_path.html.liquid
@@ -0,0 +1,58 @@
+{% include "header", current_page_orgin: "learning_paths" %}
+
+
+ {% comment %} Get the full size background image by removing the modifier from the URL {% endcomment %}
+ {% assign learning_path_image_full_size = learning_path.image_url | replace: '/resize=width:820,height:500,fit:crop/', '/' %}
+
+
+
+
+
+
+
+
+
+
+ {{ learning_path.name }}
+
+
+ {% include "learning_path_cta_button" %}
+
+
+
+
+ {% if learning_path.description and learning_path.description.size > 0 %}
+ {% include "learning_path_description" %}
+ {% endif %}
+
+
+ {% include "learning_path_cta_button" %}
+
+
+ {% if learning_path.instructors and learning_path.instructors.any? %}
+
+ {% include "learning_path_instructors" %}
+
+
+ {% endif %}
+
+
+
+
+
+
+
+
+
+ {% if learning_path.enrolled? and learning_path.started? %}
+ {% include "learning_path_progress_and_cta" %}
+ {% else %}
+ {% include "learning_path_cta_button" %}
+ {% endif %}
+
+ {% include "learning_path_outline" %}
+
+
+
+
+{% include "footer" %}
diff --git a/NP_Custom_Templates/customer_templates/Stripe/learning_paths.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/learning_paths.html.liquid
new file mode 100644
index 00000000..81d6e550
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/learning_paths.html.liquid
@@ -0,0 +1,23 @@
+{% include "header", current_page_orgin: "learning_paths" %}
+
+
+
+
+ Browse Learning Paths
+
+
+ {% comment %} Capture subtitle text so it can be modified {% endcomment %}
+ {% capture subtitle_text %}
+ {% t .subtitle %}
+ {% endcapture %}
+
+ {% if subtitle_text and subtitle_text.size > 0 %}
+
+ {% include "learning_paths_index", items: learning_paths.available, card_classes: "col-md-6" %}
+
+{% include "footer" %}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/partner-certs.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/partner-certs.html.liquid
new file mode 100644
index 00000000..e0b863f7
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/partner-certs.html.liquid
@@ -0,0 +1,17 @@
+{% include "header", current_page_orgin: "courses" %}
+{% include "sub_navigation", current_page: "/app/partner-certs" %}
+
+
+ Partner Certification Courses
+
+
+ {% capture subtitle_text %}
+ {%comment%}{% t .headline, key: current_school.course_vocabulary %}{%endcomment%}
+ Hey there, {{ current_person.name }}! Are you ready to move onto your Partner Challenge Missions? Let's go!
+ {% endcapture %}
+ {{ subtitle_text | replace: "Courses", "tutorials" }}
+
+
+ {% include "courses_partnercerts_index", card_classes: "col-xs-12 col-sm-6 col-lg-4 np-stretch-content" %}
+
+{% include "footer" %}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/partner-training.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/partner-training.html.liquid
new file mode 100644
index 00000000..c25dbd79
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/partner-training.html.liquid
@@ -0,0 +1,17 @@
+{% include "header", current_page_orgin: "courses" %}
+{% include "sub_navigation", current_page: "/app/partner-training" %}
+
+
+ Partner Training Courses
+
+
+ {% capture subtitle_text %}
+ {%comment%}{% t .headline, key: current_school.course_vocabulary %}{%endcomment%}
+ Hey there {{ current_person.name }}! Welcome to your partner training center! Complete at least one of the courses to complete your certification.
+ {% endcapture %}
+ {{ subtitle_text | replace: "Courses", "tutorials" }}
+
+
+ {% include "courses_partnertraining_index", card_classes: "col-xs-12 col-sm-6 col-lg-4 np-stretch-content" %}
+
+{% include "footer" %}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Stripe/sec3-courses.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/sec3-courses.html.liquid
new file mode 100644
index 00000000..1175d616
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/sec3-courses.html.liquid
@@ -0,0 +1,17 @@
+{% include "header", current_page_orgin: "courses" %}
+{% include "sub_navigation", current_page: "/app/sec3-courses" %}
+
+
+ Section 3 Courses
+
+
+ {% capture subtitle_text %}
+ {%comment%}{% t .headline, key: current_school.course_vocabulary %}{%endcomment%}
+ These are all courses filed under Section 1
+ {% endcapture %}
+ {{ subtitle_text | replace: "Courses", "tutorials" }}
+
+ {% include "training_events_index" %}
+
+{% include "footer" %}
diff --git a/NP_Custom_Templates/customer_templates/Stripe/training_session.html.liquid b/NP_Custom_Templates/customer_templates/Stripe/training_session.html.liquid
new file mode 100644
index 00000000..2d9ef1d6
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Stripe/training_session.html.liquid
@@ -0,0 +1 @@
+{% include "training_session_desktop_view" %}
\ No newline at end of file