diff --git a/Custom_Templates/customer_templates/Blacklane-Chauffeurs/sign-up-follow-up.html.liquid b/Custom_Templates/customer_templates/Blacklane-Chauffeurs/sign-up-follow-up.html.liquid index fa3d44ae..99d0ac7e 100644 --- a/Custom_Templates/customer_templates/Blacklane-Chauffeurs/sign-up-follow-up.html.liquid +++ b/Custom_Templates/customer_templates/Blacklane-Chauffeurs/sign-up-follow-up.html.liquid @@ -1,10 +1,11 @@
-

Please select your region:

+

Please select your region:

Europe, Middle East, Africa, & Asia-Pacific - + + North & South America @@ -42,30 +43,30 @@ bottom: 0; right: 0; padding: 35px; - width: 40%; + width: 20%; } .region-container { border: none; padding: 20px; width: 100%; display: flex; - justify-content: space-evenly; + justify-content: space-between; } .info-group-option { text-transform: none; - font-size: 25px; + font-size: 100%; border-radius: 10px; background-color: black; color: white; max-width: 350px; - width: 300px; - height: 100px; + width: 50%; + height: 10vh; line-height: normal; text-align: center; - flex-wrap: nowrap; + flex-wrap: wrap; align-items: center; display: flex; - justify-content: center; + justify-content: space-between; text-decoration: none; } diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course.html.liquid deleted file mode 100644 index fd607507..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% capture course_label %}{% endcapture %} -{% capture course_data_label %}none{% endcapture %} -{% assign course_is_new = false %} -{% assign created_at_date_seconds = current_person.created_at | date: "%s" %} -{% assign course_published_date_seconds = course.properties.initial_publish_date | date: "%s" %} -{% if course_published_date_seconds > created_at_date_seconds %}{% assign course_is_new = true %}{% endif %} -{% if course_is_new %} - {% if course.progress == 0 %} - {% capture course_label %}
New
{% endcapture %} - {% capture course_data_label %}new{% endcapture %} - {% endif %} -{% endif %} -{% if course.progress > 0 and course.progress < 100 %} - {% capture course_label %}
In progress
{% endcapture %} - {% capture course_data_label %}in-progress{% endcapture %} -{% elsif course.completed? %} - {% capture course_label %}
Viewed
{% endcapture %} - {% capture course_data_label %}viewed{% endcapture %} -{% endif %} - - -
- {{ course.name }} -
- - -
- {% if course.properties.course_length != 'NULL' %} -
{{ course.properties.course_length }}
- {% endif %} - {{course_label}} -
-
-
-
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course_condensed.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course_condensed.html.liquid deleted file mode 100644 index 1ef4bdd6..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course_condensed.html.liquid +++ /dev/null @@ -1,42 +0,0 @@ -{% capture course_path %}{% route course, id: course.id %}{% endcapture %} -{% capture course_label %}{% endcapture %}{% capture course_data_label %}none{% endcapture %} - -{% assign is_new = false %} -{% assign created_at_date_seconds = current_person.created_at | date: "%s" %} -{% assign course_published_date_seconds = course.properties.initial_publish_date | date: "%s" %} - -{% if course_published_date_seconds > created_at_date_seconds %} - {% assign is_new = true %} -{% endif %} - -{% if is_new %} - {% if course.progress == 0 %} - {% capture course_label %}
New
{% endcapture %} - {% capture course_data_label %}new{% endcapture %} - {% endif %} -{% endif %} - -{% if course.progress > 0 and course.progress < 100 %} - {% capture course_label %}
In progress
{% endcapture %} - {% capture course_data_label %}in-progress{% endcapture %} -{% elsif course.completed? %} - {% capture course_label %}
Viewed
{% endcapture %} - {% capture course_data_label %}viewed{% endcapture %} -{% endif %} - - -
-
-
{{ course.name }}
-
- {{ course.full_description | strip_html }} -
-
- {% if course.properties.course_length != 'NULL' %} -
{{ course.properties.course_length }}
- {% endif %} -
{{course_label}}
-
-
-
-
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_category_cards.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_category_cards.html.liquid deleted file mode 100644 index 205ce8d4..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/_category_cards.html.liquid +++ /dev/null @@ -1,55 +0,0 @@ -{% if courses.enrolled.any? %}{% comment %} GETTING STARTED {% endcomment %}{% for school_category in school_categories %} {% if school_category == "Getting Started" %}
Getting Started Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %}{% comment %} EARNINGS {% endcomment %}{% for school_category in school_categories %}{% if school_category == "Earnings" %}
Earnings Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %}{% comment %} SHOPPING & DELIVERY {% endcomment %}{% for school_category in school_categories %}{% if school_category == "Shopping & Delivery" %}
Shopping & Delivery Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %}{% comment %} DELIVERY {% endcomment %}{% for school_category in school_categories %}{% if school_category == "Delivery" %}
Delivery Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %}{% comment %} USING THE APP {% endcomment %}{% for school_category in school_categories %}{% if school_category == "Using the App" %}
Using the App Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %}{% comment %} CONTACTING CUSTOMERS {% endcomment %}{% for school_category in school_categories %}{% if school_category == "Contacting Customers" %}
Contacting Customers Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %} - - {% comment %} NON SPECIFIED {% endcomment %} - {% for school_category in school_categories %} - {% unless school_category == "Getting Started" or school_category == "Earnings" or school_category == "Shopping & Delivery" or school_category == "Delivery" or school_category == "Using the App" or school_category == "Contacting Customers" %} - {% if school_category == "Resource Bundles" %} - {% if features.learning_paths? and learning_paths.enrolled.any? %} -
-
-
- Category Icon -
-
-
Resource Bundles
-
-
- -
- {% include "filtered_learning_paths_tray", category_name: "Resource Bundles" %} - {% endif %} - {% else %} -
-
-
- {% if school_category == "Arrival & Pick Up" %} - Category Icon - {% elsif school_category == "Drop Off & Returns" %} - Category Icon - {% elsif school_category == "Troubleshooting" %} - Category Icon - {% elsif school_category == "Trust & Safety" %} - Category Icon - {% elsif school_category == "Offer Acceptance" %} - Category Icon - {% elsif school_category == "Returns" %} - Category Icon - {% else %} - Category Icon - {% endif %} -
-
-
-
New
-
-
{{school_category}}
-
-
- -
- {% include "filtered_courses_tray", category_name: school_category %} - {% endif %} - {% endunless %} - {% endfor %} - -{% endif %} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_course_activity_unlocked.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_course_activity_unlocked.html.liquid deleted file mode 100644 index 92db0be0..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/_course_activity_unlocked.html.liquid +++ /dev/null @@ -1 +0,0 @@ -{{ activity.title }} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_course_outline.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_course_outline.html.liquid deleted file mode 100644 index 144da4a7..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/_course_outline.html.liquid +++ /dev/null @@ -1 +0,0 @@ -
Contents
    {% assign activity_count = 0 %}{% assign num_of_sections = course.sections | size %}{% assign num_of_activities_in_first_section = course.sections.first.activities | size %}{% for section in course.sections %}
  1. {% if num_of_activities_in_first_section > 1 or num_of_sections > 1 %}
    {{ section.name }}
    {% endif %}
      {% for activity in section.activities %}{% assign activity_count = activity_count | plus: 1 %}
    1. {% if activity.completed? %}{% if activity.locked? %}{{ activity.title }}{% else %}{% include "course_activity_unlocked", class: "np-course-outline-content-activity-link-completed" %}{% endif %}
      {% else %}
      {{ activity_count }}
      {% if activity.locked? %} {{ activity.title }}{% else %}{% include "course_activity_unlocked", class: "np-course-outline-content-activity-link" %}{% endif %}
      {% endif %}
    2. {% endfor %}
  2. {% endfor %}
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_filtered_courses_tray.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_filtered_courses_tray.html.liquid deleted file mode 100644 index d541d032..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/_filtered_courses_tray.html.liquid +++ /dev/null @@ -1 +0,0 @@ -
{{category_name}}
{% if current_person.signed_in? %}{% endif %}
{% assign enrolled_courses_by_progress = enrolled_courses | sort: "name" %}{% for course in enrolled_courses_by_progress %}{% for course_category in course.categories %}{% if school_category == course_category.name %}{% include "cards_course_condensed" with course %}{% endif %}{% endfor %}{% endfor %}
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_mobile_header.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_mobile_header.html.liquid deleted file mode 100644 index 0d60cc9c..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/_mobile_header.html.liquid +++ /dev/null @@ -1,4 +0,0 @@ -
- -
{{title}}
-
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_search_result.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_search_result.html.liquid deleted file mode 100644 index d88c8b36..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/_search_result.html.liquid +++ /dev/null @@ -1,16 +0,0 @@ -{% if result.type == "course" %} - -{% endif %} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/course.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/course.html.liquid deleted file mode 100644 index 272af09a..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/course.html.liquid +++ /dev/null @@ -1,94 +0,0 @@ -{% if course.properties.skip_course_outline_page %} - -{% else %} - {% assign back_button_url = "/app/courses" %} - {% for category in course.categories %} - {% assign cat_name = category.name | replace: " ", "-" | downcase %} - {% assign back_button_url = '/app/courses#' | append: cat_name %} - {% endfor %} - -
- - - -
{{ course.name }}
-
- -
-
-
-
- {{ course.name }} -
-
{{ course.name }}
-
{{ course.full_description }}
-
- {% if course.properties.course_length != 'NULL' %} -
{{ course.properties.course_length }}
- {% endif %} -
-
-
-
-
- {% include "course_outline" %} -
-
- {% if course.learner_can_retake? %} -
- {% form_authenticity_token %} - -
- {% else %} - - {% if course.progress > 0 and course.progress < 100 %} - Resume - {% elsif course.completed? %} - Review - {% else %} - Start - {% endif %} - - {% endif %} -
-
-
-{% endif %} - - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/courses.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/courses.html.liquid deleted file mode 100644 index c9ab298e..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/courses.html.liquid +++ /dev/null @@ -1,108 +0,0 @@ -{% assign available_school_categories = '' | split: '' %} -{% assign enrolled_courses = courses.enrolled %} -{% for course in enrolled_courses %} - {% for cat in course.categories %} - {% assign cat_name = cat.name | split: '!@#$%^&*()' %} - {% assign available_school_categories = available_school_categories | concat: cat_name %} - {% endfor %} -{% endfor %} -{% assign enrolled_learning_paths = learning_paths.enrolled %} -{% for learning_path in enrolled_learning_paths %} - {% for lp_cat in learning_path.categories %} - {% assign lp_cat_name = lp_cat.name | split: '!@#$%^&*()' %} - {% assign available_school_categories = available_school_categories | concat: lp_cat_name %} - {% endfor %} -{% endfor %} -{% assign unique_school_categories = available_school_categories | uniq | sort %} - -{% assign resource_bundles_to_display = "" %} -{% if features.learning_paths? %} - {% if enrolled_learning_paths.any? %} - {% if current_person.properties.access_level == "EXPERIENCED" %} - {% assign resource_bundles_to_display = current_school.properties.featured_resource_bundles_experienced | downcase %} - {% elsif current_person.properties.access_level == "BEGINNER" %} - {% assign resource_bundles_to_display = current_school.properties.featured_resource_bundles_beginner | downcase %} - {% endif %} - {% endif %} -{% endif %} -{% assign resource_bundles_to_display_array = resource_bundles_to_display | split: "," %} - -{% capture icon %} - fa-arrow-left{% endcapture %} -{% include "mobile_header", title: "Resource Center", back_icon: icon, back_link: "javascript:sendMessage();" %} -{% include "sub_navigation" %} -
- {% if current_person.signed_in? %} - - {% endif %} - {% if current_person.properties.show_welcome_message %} -
Questions? We can help! Check out these optional resources to get the most out of the Spark Driver™ app.
- {% endif %} - {% if courses.enrolled.any? %} - - {% endif %} -
- -
- {% include "category_cards", school_categories: unique_school_categories %} -
-
-
- - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/dashboard.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/dashboard.html.liquid deleted file mode 100644 index 9f5bfecd..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/dashboard.html.liquid +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/progress.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/progress.html.liquid deleted file mode 100644 index 2a938e16..00000000 --- a/Custom_Templates/customer_templates/Walmart Spark Prod/progress.html.liquid +++ /dev/null @@ -1,60 +0,0 @@ -{% capture icon %} - fa-arrow-left -{% endcapture %} -{% include "mobile_header", title: "Resource Center", back_icon: icon, back_link: "javascript:sendMessage();" %} - -{% include "sub_navigation" %} - -
-
-
- {% if courses.enrolled.any? %} - {% assign courses_in_progress = 0 %} - {% assign enrolled_courses = courses.enrolled %} - {% assign courses_ordered_by_progress = enrolled_courses | sort: "progress" %} - {% for course in courses_ordered_by_progress %} - - {% if course.progress > 0 %} - {% assign courses_in_progress = courses_in_progress | plus: 1 %} - {% capture course_path %}{% route course, id: course.id %}{% endcapture %} - -
-
- -
{{ course.name }}
-
- {% if course.properties.course_length != 'NULL' %} -
- {{ course.properties.course_length }} -
- {% endif %} -
- {% if course.progress > 0 and course.progress < 100 %} -
- In progress -
- {% elsif course.completed? %} -
- Viewed -
- {% endif %} -
-
-
-
-
- {% endif %} - {% endfor %} - - {% if courses_in_progress == 0 %} -
-
-
-

You haven't viewed any resources yet.
Visit All Resources to see what's available.

-
-
- {% endif %} - {% endif %} -
-
-
\ No newline at end of file