diff --git a/Custom_Templates/customer_templates/.DS_Store b/Custom_Templates/customer_templates/.DS_Store index 710c38e4..11a6871b 100644 Binary files a/Custom_Templates/customer_templates/.DS_Store and b/Custom_Templates/customer_templates/.DS_Store differ diff --git a/Custom_Templates/customer_templates/Academy Climbing/training_events.html.liquid b/Custom_Templates/customer_templates/Academy Climbing/training_events.html.liquid index cbf58547..f5752de4 100644 --- a/Custom_Templates/customer_templates/Academy Climbing/training_events.html.liquid +++ b/Custom_Templates/customer_templates/Academy Climbing/training_events.html.liquid @@ -14,18 +14,11 @@ {% include "sub_navigation" %}
-
-
- {% t .title %} -
-
- {% t .subtitle %} -
-
-
- {% include "training_events_filter" %} -
-
- {% include "training_events_index" %} +
{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Artera/_head.html.liquid b/Custom_Templates/customer_templates/Artera/_head.html.liquid new file mode 100644 index 00000000..39e3cc0d --- /dev/null +++ b/Custom_Templates/customer_templates/Artera/_head.html.liquid @@ -0,0 +1,26 @@ +{% styles default %} +{% styles colors %} +{% styles custom %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Artera/_header.html.liquid b/Custom_Templates/customer_templates/Artera/_header.html.liquid new file mode 100644 index 00000000..047f9b56 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera/_header.html.liquid @@ -0,0 +1,181 @@ +
+ +
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ {% if current_school.logo_url %} +

+ + {{ current_school.name }} + +

+ {% else %} + + {{ current_school.name }} + + {% endif %} + +
+ +
+ + {% if current_person.signed_in? %} + +
+ + +
+ {% else %} +
+ {% endif %} + +
+ +
+
+
+
+ +{% include "messages" %} diff --git a/Custom_Templates/customer_templates/Artera/_header_minimal.html.liquid b/Custom_Templates/customer_templates/Artera/_header_minimal.html.liquid new file mode 100644 index 00000000..1a607874 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera/_header_minimal.html.liquid @@ -0,0 +1,47 @@ +
+ + {% if current_school.logo_url %} + + {% else %} + + {{ current_school.name }} + + {% endif %} + +
+ +{% include "messages" %} + + + diff --git a/Custom_Templates/customer_templates/Artera/auth_url_email.html.liquid b/Custom_Templates/customer_templates/Artera/auth_url_email.html.liquid new file mode 100644 index 00000000..205b8f17 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera/auth_url_email.html.liquid @@ -0,0 +1,72 @@ + + +{%comment%} +{%endcomment%} +
+
+ {% include "header_minimal" %} +
+
+ {% form_authenticity_token %} +
+ {% t shared.welcome_to_school, school_name: current_school.name %} +
+
+ Check out the video below for a quick tour of Artera Academy.
Then, enter your first name, last name, and your work email address below to get started. +
+ + {%comment%}
 
{%endcomment%} +
+
+ +
+
+
+ +
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/G2/_cards_course.html.liquid b/Custom_Templates/customer_templates/G2/_cards_course.html.liquid index 70a3b89b..b3515457 100644 --- a/Custom_Templates/customer_templates/G2/_cards_course.html.liquid +++ b/Custom_Templates/customer_templates/G2/_cards_course.html.liquid @@ -21,9 +21,9 @@
{{ course.short_description }}
-
+ {{ activities_count }} {% if activities_count == 1 %}Lesson{% else %}Lessons{% endif %} -
+ @@ -65,6 +65,7 @@ font-size: 16px; margin-top: 20px; line-height: 22px; + text-decoration: none; } diff --git a/Custom_Templates/customer_templates/G2/_course_activity_locked.html.liquid b/Custom_Templates/customer_templates/G2/_course_activity_locked.html.liquid new file mode 100644 index 00000000..386393d5 --- /dev/null +++ b/Custom_Templates/customer_templates/G2/_course_activity_locked.html.liquid @@ -0,0 +1,4 @@ + + + {{ activity.title }} + diff --git a/Custom_Templates/customer_templates/G2/_course_activity_unlocked.html.liquid b/Custom_Templates/customer_templates/G2/_course_activity_unlocked.html.liquid new file mode 100644 index 00000000..30c03305 --- /dev/null +++ b/Custom_Templates/customer_templates/G2/_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/G2/_course_desktop_view.html.liquid b/Custom_Templates/customer_templates/G2/_course_desktop_view.html.liquid index 5abfa845..00e2497d 100644 --- a/Custom_Templates/customer_templates/G2/_course_desktop_view.html.liquid +++ b/Custom_Templates/customer_templates/G2/_course_desktop_view.html.liquid @@ -1,4 +1,8 @@
+ + + Back to My Courses +
-
+
Curriculum
@@ -28,9 +32,16 @@ {{ section.name }}
{% for activity in section.activities %} -
- {{ activity.title }} + + {% if activity.locked? %} +
+ {% include "course_activity_locked" %} +
+ {% else %} + + {% endif %} {% endfor %} {% endfor %}
@@ -114,6 +125,9 @@ font-size: 18px; line-height: 28.8px; font-weight: 400; + color: black; + opacity: 0.7; + text-decoration: none; } .np-course-bottom-right { margin-left: 50px; @@ -156,4 +170,20 @@ margin-left: 110px; } } + .np-icon-back { + color:black; + } + + .back-to-courses-btn { + display: flex; + align-items: center; + justify-content: flex-end; + font-weight: 500; + color: black; + } + .back-arrow { + font-size: 0.8rem; + margin-right: 5px; + font-weight: 500; +} diff --git a/Custom_Templates/customer_templates/G2/_course_outline.html.liquid b/Custom_Templates/customer_templates/G2/_course_outline.html.liquid new file mode 100644 index 00000000..72f97e79 --- /dev/null +++ b/Custom_Templates/customer_templates/G2/_course_outline.html.liquid @@ -0,0 +1,40 @@ +
+
+ {% t .header, key: current_school.course_vocabulary %} +
+
+
    + {% for section in course.sections %} +
  1. +
    + {{ section.name }} +
    +
      + {% for activity in section.activities %} + +
    1. + {% 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 %} +
    2. + {% endfor %} +
    +
  2. + {% endfor %} +
+
+
diff --git a/Custom_Templates/customer_templates/G2/homepage.html.liquid b/Custom_Templates/customer_templates/G2/homepage.html.liquid index f67f659b..7744a8ca 100644 --- a/Custom_Templates/customer_templates/G2/homepage.html.liquid +++ b/Custom_Templates/customer_templates/G2/homepage.html.liquid @@ -1,5 +1,6 @@ {% comment %} {% include "header" %} {% endcomment %} {% include "course_version_outdated_alert", courses: courses.featured %} +
+
+ {% include "sub_navigation" %} {% include 'courses_catalog' %} {% comment %} {% include "footer" %} {% endcomment %} diff --git a/Custom_Templates/customer_templates/Keystone_RV/_footer.html.liquid b/Custom_Templates/customer_templates/Keystone_RV/_footer.html.liquid new file mode 100644 index 00000000..0cc5b562 --- /dev/null +++ b/Custom_Templates/customer_templates/Keystone_RV/_footer.html.liquid @@ -0,0 +1,48 @@ +
+
+
+
+ {% if website_footer.show_navigation_links? %} + + {% endif %} + {% if website_footer.show_customer_service_email? and website_footer.school_customer_service_email %} +

+

NOTE: If you are having trouble logging in make sure to check your email and follow the prompts to activate your account.
If you still have trouble contact us at + {{ website_footer.school_customer_service_email }} + + + +

+ {% endif %} +
+
+ {% if website_footer.show_social_media_links? %} + + {% endif %} +
+
+
+
diff --git a/Custom_Templates/customer_templates/Keystone_RV/_header.html.liquid b/Custom_Templates/customer_templates/Keystone_RV/_header.html.liquid new file mode 100644 index 00000000..b4cf546e --- /dev/null +++ b/Custom_Templates/customer_templates/Keystone_RV/_header.html.liquid @@ -0,0 +1,106 @@ +
+
+ +
+
+ +{% search %} + +{% endsearch %} + +{% catalog_search %} + +{% endcatalog_search %} + +
+
+ +
+
diff --git a/Custom_Templates/customer_templates/Keystone_RV/_my_content_header.html.liquid b/Custom_Templates/customer_templates/Keystone_RV/_my_content_header.html.liquid new file mode 100644 index 00000000..367fea49 --- /dev/null +++ b/Custom_Templates/customer_templates/Keystone_RV/_my_content_header.html.liquid @@ -0,0 +1,4 @@ +
+

{{ my_content.headline }}

+

{{ my_content.subheadline }}

+
diff --git a/Custom_Templates/customer_templates/Keystone_RV/my_content.html.liquid b/Custom_Templates/customer_templates/Keystone_RV/my_content.html.liquid new file mode 100644 index 00000000..aa234bf3 --- /dev/null +++ b/Custom_Templates/customer_templates/Keystone_RV/my_content.html.liquid @@ -0,0 +1,34 @@ +
+
+ {% if current_school.apps.instructor_led_training.active? %} + {% if current_person.upcoming_registered_events.any? %} + {% include "events" %} + {% else %} + {% include "events_empty" %} + {% endif %} + {% endif %} + + {% if my_content.learning_paths? %} + {% include "my_paths" %} + {% endif %} + + {% include "my_content_header" with "" %} +
+ +
+
    + {% for course in my_content.courses %} + {% if course.course_category_names == "Resource" %} + {% include "course" %} + {% endif %} + {% endfor %} +
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Mizuno/_header.html.liquid b/Custom_Templates/customer_templates/Mizuno/_header.html.liquid index 0796638c..a9418233 100644 --- a/Custom_Templates/customer_templates/Mizuno/_header.html.liquid +++ b/Custom_Templates/customer_templates/Mizuno/_header.html.liquid @@ -86,7 +86,7 @@ .np-header-logo-image { display: block; margin: auto; - height: 80px; + height: 120px; } @media screen and (min-width: 768px){ diff --git a/Custom_Templates/customer_templates/Scenario/auth_url_email.html.liquid b/Custom_Templates/customer_templates/Scenario/auth_url_email.html.liquid index f3702cd6..dcb4673b 100644 --- a/Custom_Templates/customer_templates/Scenario/auth_url_email.html.liquid +++ b/Custom_Templates/customer_templates/Scenario/auth_url_email.html.liquid @@ -59,7 +59,6 @@
-{% comment %} -{% endcomment %}