From ecf684589008d60c68d8fcf2efeb8a5c58a734a5 Mon Sep 17 00:00:00 2001 From: Norm Rasmussen Date: Fri, 14 Jul 2023 16:56:05 -0400 Subject: [PATCH] Doordash templates, notes for Mizuno, a few template changes. Anthology,included. --- .../_cards_course.html.liquid | 42 +- .../_cards_course_non_carousel.html.liquid | 54 ++ .../_cards_training_event.html.liquid | 45 ++ .../_course_desktop_view.html.liquid | 258 ++++++++++ .../_course_header.html.liquid | 46 ++ .../_course_mobile_view.html.liquid | 40 ++ .../_course_progress_and_cta.html.liquid | 57 +++ .../_courses_catalog.html.liquid | 14 + .../_courses_index_completed.html.liquid | 65 +++ .../_courses_index_in_prog.html.liquid | 65 +++ .../_dropdown_courses.html.liquid | 52 ++ .../_filter_by_category.html.liquid | 33 ++ .../_filter_by_product.html.liquid | 135 +++++ .../Anthology-Production/_head.html.liquid | 10 + .../Anthology-Production/_header.html.liquid | 206 ++++++++ .../_popular_courses_carousel.html.liquid | 42 ++ .../_popular_courses_non_carousel.html.liquid | 12 + .../_profile_card.html.liquid | 192 +++++++ .../_profile_logo_calculator.html.liquid | 78 +++ .../_resources.html.liquid | 73 +++ .../_sub_navigation.html.liquid | 15 + .../_training_events_dashboard.html.liquid | 20 + .../_training_events_index.html.liquid | 76 +++ .../_training_events_zero_state.html.liquid | 9 + .../dashboard.html.liquid | 229 +++++++++ .../Anthology-Production/homepage.html.liquid | 225 +++++++++ .../learning_paths.html.liquid | 13 + .../Anthology-Production/styles.css.liquid | 180 +++++++ .../training_events.html.liquid | 18 + .../_sub_navigation.html.liquid | 5 +- .../_cards_course.html.liquid | 68 +++ .../_cards_course_lp.html.liquid | 91 ++++ .../_course_header.html.liquid | 33 ++ .../_course_mobile_view.html.liquid | 52 ++ .../_course_progress_and_cta.html.liquid | 60 +++ .../_courses_index.html.liquid | 71 +++ .../DoorDash Resource Hub/_footer.html.liquid | 115 +++++ .../_french_lang.html.liquid | 468 ++++++++++++++++++ .../_group_selection.html.liquid | 128 +++++ .../DoorDash Resource Hub/_header.html.liquid | 217 ++++++++ .../_sub_navigation.html.liquid | 16 + .../DoorDash Resource Hub/course.html.liquid | 131 +++++ .../DoorDash Resource Hub/courses.html.liquid | 91 ++++ .../dashboard.html.liquid | 59 +++ .../DoorDash Resource Hub/infos.html.liquid | 441 +++++++++++++++++ .../DoorDash Resource Hub/styles.css.liquid | 64 +++ CustomerNotes/Anthology.md | 5 + CustomerNotes/Mizuno.md | 12 + CustomerNotes/Pipedrive.md | 32 ++ 49 files changed, 4456 insertions(+), 7 deletions(-) create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_cards_course_non_carousel.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_cards_training_event.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_course_desktop_view.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_course_header.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_course_mobile_view.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_course_progress_and_cta.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_courses_catalog.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_courses_index_completed.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_courses_index_in_prog.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_dropdown_courses.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_filter_by_category.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_filter_by_product.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_head.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_header.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_popular_courses_carousel.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_popular_courses_non_carousel.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_profile_card.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_profile_logo_calculator.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_resources.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_sub_navigation.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_training_events_dashboard.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_training_events_index.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/_training_events_zero_state.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/dashboard.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/homepage.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/learning_paths.html.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/styles.css.liquid create mode 100644 Custom_Templates/customer_templates/Anthology-Production/training_events.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/_cards_course.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/_cards_course_lp.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/_course_header.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/_course_mobile_view.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/_course_progress_and_cta.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/_courses_index.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/_footer.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/_french_lang.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/_group_selection.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/_header.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/_sub_navigation.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/course.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/courses.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/dashboard.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/infos.html.liquid create mode 100644 Custom_Templates/customer_templates/DoorDash Resource Hub/styles.css.liquid diff --git a/Custom_Templates/customer_templates/Anthology-Production/_cards_course.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_cards_course.html.liquid index cc9efd2a..ee9276fe 100644 --- a/Custom_Templates/customer_templates/Anthology-Production/_cards_course.html.liquid +++ b/Custom_Templates/customer_templates/Anthology-Production/_cards_course.html.liquid @@ -182,16 +182,27 @@ {% endif %}
-
+ {%- comment -%} {{ course.name }} + > {%- endcomment -%}

{{ course.name }}

+ {% assign act_count = 0 %} + {% for section in course.sections %} + {% for activity in section.activities %} + {% assign act_count = act_count| plus: 1 %} + {% endfor %} + {% endfor %} + + + {{ act_count }} {% if act_count == 1 %}Activity{% else %}Activities{% endif %} +
{% capture course_path %}{% route course, id: course.id %}{% endcapture %} {% if course.has_to_restart? %} @@ -208,7 +219,7 @@ padding-left: 15px; width: 70%;">
+
+ {{ course.name }} +
+
+

+ {{ course.name }} +

+
+ {% capture course_path %}{% route course, id: course.id %}{% endcapture %} + {% if course.has_to_restart? %} + {% include "course_version_outdated_popup", path: course_path %} + {% endif %} + + {% if course.progress > 0 and course.progress < 100 %} + Continue + {% else %} + View + {% endif %} + {%- comment -%} {% t shared.view %} {%- endcomment -%} + +
+
+
+
+
+
+
+ {% t shared.progress, count: course.progress %} +
+
+ {{course.properties.course_duration}} +
+
+
+
+ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_cards_training_event.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_cards_training_event.html.liquid new file mode 100644 index 00000000..0797b783 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_cards_training_event.html.liquid @@ -0,0 +1,45 @@ +
+
+
+

+ {{ training_event.title }} +

+
+ {% t shared.event_types, key: training_event.event_type %} +
+
+ +
+
+
+ {{ training_event.sessions.first.day }} +
+
+
+ {{ training_event.sessions.first.month }} +
+
+ {{ training_event.sessions.first.year }} +
+
+
+
+
+
+
+ + + {% t .sessions, count: training_event.sessions.size %} + + + {% t shared.view %} + +
+
+
+
diff --git a/Custom_Templates/customer_templates/Anthology-Production/_course_desktop_view.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_course_desktop_view.html.liquid new file mode 100644 index 00000000..eb1152a8 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_course_desktop_view.html.liquid @@ -0,0 +1,258 @@ +{% if course.properties.product_names_for_course_cards == 'Anthology Reach' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Reach.svg' %} + {% assign color_main = '#F06A32' %} + {% assign color_dark = '#731013' %} + {% assign color_light = '#F58545' %} +{% elsif course.properties.product_names_for_course_cards == 'Radius' %} + {% assign product_logo = 'blank' %} + {% assign color_main = '#F06A32' %} + {% assign color_dark = '#F3798A' %} + {% assign color_light = '#F58545' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Engage' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Engage.svg' %} + {% assign color_main = '#F06A32' %} + {% assign color_dark = '#F16423' %} + {% assign color_light = '#F3798A' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Beacon' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Beacon.svg' %} + {% assign color_main = '#F06A32' %} + {% assign color_dark = '#D94827' %} + {% assign color_light = '#F16423' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Milestone' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Milestone.svg' %} + {% assign color_main = '#F06A32' %} + {% assign color_dark = '#F3798A' %} + {% assign color_light = '#F9B5B5' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Occupation Insight' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Occupation+Insight.svg' %} + {% assign color_main = '#F06A32' %} + {% assign color_dark = '#F58545' %} + {% assign color_light = '#F9B5B5' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Raise' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Raise.svg' %} + {% assign color_main = '#F06A32' %} + {% assign color_dark = '#D94827' %} + {% assign color_light = '#F9B5B5' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Digital Assistant' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Digital+Assistant.svg' %} + {% assign color_main = '#F06A32' %} + {% assign color_dark = '#D94827' %} + {% assign color_light = '#F58545' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Baseline' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Baseline.svg' %} + {% assign color_main = '#F06A32' %} + {% assign color_dark = '#731013' %} + {% assign color_light = '#D94827' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Encompass' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Encompass.svg' %} + {% assign color_main = '#F06A32' %} + {% assign color_dark = '#731013' %} + {% assign color_light = '#F3798A' %} +{% elsif course.properties.product_names_for_course_cards == 'Talisma' %} + {% assign product_logo = 'blank' %} + {% assign color_main = '#F06A32' %} + {% assign color_dark = '#D94827' %} + {% assign color_light = '#F3798A' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Student' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Student.svg' %} + {% assign color_main = '#82C342' %} + {% assign color_dark = '#96CA51' %} + {% assign color_light = '#F3E588' %} +{% elsif course.properties.product_names_for_course_cards == 'CVue' %} + {% assign product_logo = 'blank' %} + {% assign color_main = '#82C342' %} + {% assign color_dark = '#286734' %} + {% assign color_light = '#F3E588' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Insight' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Insight.svg' %} + {% assign color_main = '#82C342' %} + {% assign color_dark = '#286734' %} + {% assign color_light = '#82C342' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Finance & HCM' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Finance+%26+HCM.svg' %} + {% assign color_main = '#82C342' %} + {% assign color_dark = '#539542' %} + {% assign color_light = '#C9BD2E' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Payroll' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Payroll.svg' %} + {% assign color_main = '#82C342' %} + {% assign color_dark = '#000000' %} + {% assign color_light = '#82C342' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Academic Economics' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Academic+Economics.svg' %} + {% assign color_main = '#82C342' %} + {% assign color_dark = '#000000' %} + {% assign color_light = '#286734' %} +{% elsif course.properties.product_names_for_course_cards == 'Blackboard Learn' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/BBLearn.svg' %} + {% assign color_main = '#1BA8E1' %} + {% assign color_dark = '#027BB6' %} + {% assign color_light = '#1BA8E1' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Ally' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Ally.svg' %} + {% assign color_main = '#1BA8E1' %} + {% assign color_dark = '#1BA8E1' %} + {% assign color_light = '#A3DBDC' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Course Evaluations' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Course+Evaluations.svg' %} + {% assign color_main = '#1BA8E1' %} + {% assign color_dark = '#004C6D' %} + {% assign color_light = '#027BB6' %} +{%- comment -%} NEED DIFF IMG FORMAT FOR THIS ONE {%- endcomment -%} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Evaluate' %} + {% assign product_logo = 'blank' %} + {% assign color_main = '#1BA8E1' %} + {% assign color_dark = '#027BB6' %} + {% assign color_light = '#A3DBDC' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Portfolio' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Portfolio.svg' %} + {% assign color_main = '#1BA8E1' %} + {% assign color_dark = '#0090A1' %} + {% assign color_light = '#5CC6CC' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Program Review' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Program+Review.svg' %} + {% assign color_main = '#1BA8E1' %} + {% assign color_dark = '#027BB6' %} + {% assign color_light = '#5CC6CC' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Planning' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Planning.svg' %} + {% assign color_main = '#1BA8E1' %} + {% assign color_dark = '#000000' %} + {% assign color_light = '#004C6D' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology Accreditation' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Accreditation.svg' %} + {% assign color_main = '#1BA8E1' %} + {% assign color_dark = '#0090A1' %} + {% assign color_light = '#1BA8E1' %} +{% elsif course.properties.product_names_for_course_cards == 'Anthology 101' %} + {% assign product_logo = 'blank' %} + {% assign color_main = '#7F59A5' %} + {% assign color_dark = '#573376' %} + {% assign color_light = '#7F59A5' %} +{% elsif course.properties.product_names_for_course_cards == 'Academy Use & Navigation' %} + {% assign product_logo = 'blank' %} + {% assign color_main = '#7F59A5' %} + {% assign color_dark = '#6283C2' %} + {% assign color_light = '#87ADDB' %} +{% elsif course.properties.product_names_for_course_cards == 'Data Strategy' %} + {% assign product_logo = 'blank' %} + {% assign color_main = '#7F59A5' %} + {% assign color_dark = '#000000' %} + {% assign color_light = '#573376' %} +{% elsif course.properties.product_names_for_course_cards == 'Faculty Development' %} + {% assign product_logo = 'blank' %} + {% assign color_main = '#7F59A5' %} + {% assign color_dark = '#7F59A5' %} + {% assign color_light = '#AA7FB8' %} +{% elsif course.properties.product_names_for_course_cards == 'Power BI' %} + {% assign product_logo = 'blank' %} + {% assign color_main = '#7F59A5' %} + {% assign color_dark = '#573376' %} + {% assign color_light = '#87ADDB' %} +{% elsif course.properties.product_names_for_course_cards == 'Professional Development' %} + {% assign product_logo = 'blank' %} + {% assign color_main = '#7F59A5' %} + {% assign color_dark = '#000000' %} + {% assign color_light = '#87ADDB' %} +{% else %} + {% assign product_logo = 'blank' %} + {% assign color_main = '#DCE4E9' %} + {% assign color_dark = '#747A7B' %} + {% assign color_light = '#B2B7BA' %} +{% endif %} + +
+
+ {% include "course_header" %} +
+
+
+
+ {%- comment -%}
+
+
+
{%- endcomment -%} +
+ {% if product_logo != 'blank' %} + + {% else %} + Anthology + {% endif %} +
+
+
+
+

+ {{ course.name }} +

+ {% assign act_count = 0 %} + {% for section in course.sections %} + {% for activity in section.activities %} + {% assign act_count = act_count| plus: 1 %} + {% endfor %} + {% endfor %} + + + {{ act_count }} {% if act_count == 1 %}Activity{% else %}Activities{% endif %} + +
+ {% capture course_path %}{% route course, id: course.id %}{% endcapture %} + {% if course.has_to_restart? %} + {% include "course_version_outdated_popup", path: course_path %} + {% endif %} +
+ +
+ {%- comment -%} {{ course.name }} {%- endcomment -%} + {% include "course_description" %} + + {% 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/Anthology-Production/_course_header.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_course_header.html.liquid new file mode 100644 index 00000000..dbef7309 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_course_header.html.liquid @@ -0,0 +1,46 @@ +
+ {{ current_school.course_vocabulary }} + + +
+
+ + + + Back +
+{%- comment -%} {{ course.name }} {%- endcomment -%} + +{%- comment -%}
+ {% if product_logo != 'blank' %} + + {% else %} + Anthology + {% endif %} +
{%- endcomment -%} +{%- comment -%}
+
+
+

+ {{ course.name }} +

+ {% assign act_count = 0 %} + {% for section in course.sections %} + {% for activity in section.activities %} + {% assign act_count = act_count| plus: 1 %} + {% endfor %} + {% endfor %} + + + {{ act_count }} {% if act_count == 1 %}Activity{% else %}Activities{% endif %} + +
+ {% capture course_path %}{% route course, id: course.id %}{% endcapture %} + {% if course.has_to_restart? %} + {% include "course_version_outdated_popup", path: course_path %} + {% endif %} +
{%- endcomment -%} diff --git a/Custom_Templates/customer_templates/Anthology-Production/_course_mobile_view.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_course_mobile_view.html.liquid new file mode 100644 index 00000000..7f31ff35 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_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/Anthology-Production/_course_progress_and_cta.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_course_progress_and_cta.html.liquid new file mode 100644 index 00000000..6c305980 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_course_progress_and_cta.html.liquid @@ -0,0 +1,57 @@ +{% assign shell_redirect_url = course.properties.external_course_url %} + +
+
+ {% t .header %} +
+
+
+
+
+ +
+ {% t shared.progress, count: course.progress %} +
+
+ +{% if shell_redirect_url %} + + View Course + +{% else %} + {% if course.learner_can_retake? %} +
+ {% form_authenticity_token %} + +
+ {% else %} + + {% if course.enrolled? == false %} + {% t shared.enroll %} + {% elsif course.started? == false %} + {% t shared.course.start, key: current_school.course_vocabulary %} + {% elsif course.completed? %} + {% t shared.course.view, key: current_school.course_vocabulary %} + {% else %} + {% t shared.continue %} + {% endif %} + + {% endif %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Anthology-Production/_courses_catalog.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_courses_catalog.html.liquid new file mode 100644 index 00000000..44fad45f --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_courses_catalog.html.liquid @@ -0,0 +1,14 @@ +
+ All Learning +
+{%- comment -%} Catalog is not used in this school. The "catalog" is the set of unstarted enrolled courses shown at the homepage {%- endcomment -%} +
+ {% for course in courses.enrolled %} + {% unless course.progress > 0 %} +
+ {%- comment -%} {% include "cards_course" with course, flag: 'catalog' %} {%- endcomment -%} + {% include "cards_course" with course, flag: 'null' %} +
+ {% endunless %} + {% endfor %} +
diff --git a/Custom_Templates/customer_templates/Anthology-Production/_courses_index_completed.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_courses_index_completed.html.liquid new file mode 100644 index 00000000..96d1a053 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_courses_index_completed.html.liquid @@ -0,0 +1,65 @@ +{% assign totalCountCompleted = 0 %} +{% for course in courses.enrolled %} + {% if course.progress == 100 %} + {% assign totalCountCompleted = totalCountCompleted | plus: 1 %} + {% endif %} +{% endfor %} + +{% if totalCountCompleted > 3 %} + +{% else %} +{% endif %} +
+ Completed +
+ +{%- comment -%} {%- endcomment -%} + +
+ {% for course in courses.enrolled %} + {% if course.progress == 100 %} +
+ {% if outerClass == "dashboard-courses-index" %} + {% include "cards_course" with course, flag: 'dashboard' %} + {% else %} + {% include "cards_course" with course %} + {% endif %} +
+ {% endif %} + {% endfor %} +
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_courses_index_in_prog.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_courses_index_in_prog.html.liquid new file mode 100644 index 00000000..90ee473a --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_courses_index_in_prog.html.liquid @@ -0,0 +1,65 @@ +{% assign totalCountInProg = 0 %} +{% for course in courses.enrolled %} + {% if course.progress > 0 and course.progress < 100 %} + {% assign totalCountInProg = totalCountInProg | plus: 1 %} + {% endif %} +{% endfor %} + +{%- comment -%} {% if totalCountInProg > 3 %} + +{% else %} +{% endif %} {%- endcomment -%} +
+ In Progress +
+ +{%- comment -%} {%- endcomment -%} + +
+ {% for course in courses.enrolled %} + {% if course.progress > 0 and course.progress < 100 %} +
+ {% if outerClass == "dashboard-courses-index" %} + {% include "cards_course" with course, flag: 'dashboard' %} + {% else %} + {% include "cards_course" with course %} + {% endif %} +
+ {% endif %} + {% endfor %} +
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_dropdown_courses.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_dropdown_courses.html.liquid new file mode 100644 index 00000000..5c9b73d0 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_dropdown_courses.html.liquid @@ -0,0 +1,52 @@ + + {{title}} + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_filter_by_category.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_filter_by_category.html.liquid new file mode 100644 index 00000000..605ee66b --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_filter_by_category.html.liquid @@ -0,0 +1,33 @@ +
+ +
+ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_filter_by_product.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_filter_by_product.html.liquid new file mode 100644 index 00000000..087bb3dd --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_filter_by_product.html.liquid @@ -0,0 +1,135 @@ +
+ +
+ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_head.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_head.html.liquid new file mode 100644 index 00000000..ccc9f1a3 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_head.html.liquid @@ -0,0 +1,10 @@ +{% styles default %} +{% styles colors %} +{% styles custom %} + + + + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_header.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_header.html.liquid new file mode 100644 index 00000000..5e78d06e --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_header.html.liquid @@ -0,0 +1,206 @@ +{%- comment -%} Desktop Header {%- endcomment -%} +
+
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ + {%- comment -%} School Desktop View Logo {%- endcomment -%} + {% if current_school.logo_url %} +

+ + {{ current_school.name }} + +

+ {% else %} + + {{ current_school.name }} + + {% endif %} + + {%- comment -%} Desktop Nav Links {%- endcomment -%} +
+ {%- comment -%} {%- endcomment -%} +
+ {% for link in navigations.sub_navigation %} + {% unless link.label == 'Catalog' or link.label == 'Learning Paths' %} + + {% endunless %} + {% endfor %} +
+
+ + {%- comment -%} Desktop Search Box {%- endcomment -%} + {% if current_person.signed_in? %} + {%- comment -%} {%- endcomment -%} + + {%- comment -%} Desktop Profile Button {%- endcomment -%} +
+ + + {%- comment -%} Desktop Profile Tooltip {%- endcomment -%} + + + {{ current_person.name }} +
+ {% else %} + {%- comment -%} Desktop Sign In Button {%- endcomment -%} + + {% endif %} +
+
+ +{%- comment -%} Mobile Header {%- endcomment -%} +
+
+ {%- comment -%} {% if current_person.signed_in? %} + {{ current_person.name }} +
+ {{ current_person.name }} +
+ {% endif %} {%- endcomment -%} +
+ + {% for website_navigation in navigations.header_navigations %} + + {{ website_navigation.name }} + + {% endfor %} +
+ {% unless current_school.sso_active? %} + + {% t .profile_settings %} + + {% endunless %} + + {% t .sign_out %} + +
+
+
+ +{% include "messages" %} diff --git a/Custom_Templates/customer_templates/Anthology-Production/_popular_courses_carousel.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_popular_courses_carousel.html.liquid new file mode 100644 index 00000000..76cf3b6c --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_popular_courses_carousel.html.liquid @@ -0,0 +1,42 @@ + + + + + + diff --git a/Custom_Templates/customer_templates/Anthology-Production/_popular_courses_non_carousel.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_popular_courses_non_carousel.html.liquid new file mode 100644 index 00000000..10a21947 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_popular_courses_non_carousel.html.liquid @@ -0,0 +1,12 @@ + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_profile_card.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_profile_card.html.liquid new file mode 100644 index 00000000..2902db8b --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_profile_card.html.liquid @@ -0,0 +1,192 @@ +
+
+
+
+ {{ current_person.name }} +
+ Account Details +
+ {{ current_person.first_name }} {{current_person.last_name}} + {{ current_person.email }} + + {% unless current_school.sso_active? %} + + {% endunless %} +
+ + {% assign sub_levels_length = current_person.properties.subscription_levels | size %} + {% if sub_levels_length > 0 %} +
+
+
+ + PRODUCT SUBSCRIPTION + + + PLAN + +
+
+
    + {% assign subscription_levels = current_person.properties.subscription_levels | split: "," %} + + {% for subscription_level in subscription_levels %} + {% assign name_level_pair = subscription_level | split: ":"%} + +
  • + {% include "profile_logo_calculator", product: name_level_pair[0] %} + {%- comment -%} + {{ name_level_pair[0] }} + {%- endcomment -%} + + {%- comment -%} {% if '{{name_level_pair[1]}}' == 'ESS' %} + Essential + {% elsif '{{name_level_pair[1]}}' == 'ENH' %} + Enhanced + {% elsif '{{name_level_pair[1]}}' == 'ENH+' %} + Enhanced Plus + {% endif %} {%- endcomment -%} + {{ name_level_pair[1] }} + +
  • + + {% endfor %} +
+
+ {% endif %} +
+
+
+ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_profile_logo_calculator.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_profile_logo_calculator.html.liquid new file mode 100644 index 00000000..56d0b852 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_profile_logo_calculator.html.liquid @@ -0,0 +1,78 @@ +{% assign product_name = product %} + +{% if product_name contains 'Reach' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Reach.svg' %} +{% elsif product_name contains 'Radius' %} + {% assign product_logo = 'blank' %} +{% elsif product_name contains 'Engage' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Engage.svg' %} +{% elsif product_name contains 'Beacon' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Beacon.svg' %} +{% elsif product_name contains 'Milestone' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Milestone.svg' %} +{% elsif product_name contains 'Occupation Insight' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Occupation+Insight.svg' %} +{% elsif product_name contains 'Raise' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Raise.svg' %} +{% elsif product_name contains 'Digital Assistant' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Digital+Assistant.svg' %} +{% elsif product_name contains 'Baseline' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Baseline.svg' %} +{% elsif product_name contains 'Encompass' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Encompass.svg' %} +{% elsif product_name contains 'Talisma' %} + {% assign product_logo = 'blank' %} +{% elsif product_name contains 'Student' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Student.svg' %} +{% elsif product_name contains 'CVue' %} + {% assign product_logo = 'blank' %} +{% elsif product_name contains 'Insight' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Insight.svg' %} +{% elsif product_name contains 'Finance & HCM' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Finance+%26+HCM.svg' %} +{% elsif product_name contains 'Payroll' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Payroll.svg' %} +{% elsif product_name contains 'Academic Economics' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Academic+Economics.svg' %} +{% elsif product_name contains 'Blackboard Learn' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/BBLearn.svg' %} +{% elsif product_name contains 'Ally' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Ally.svg' %} +{% elsif product_name contains 'Course Evaluations' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Course+Evaluations.svg' %} +{%- comment -%} NEED DIFF IMG FORMAT FOR THIS ONE {%- endcomment -%} +{% elsif product_name contains 'Evaluate' %} + {% assign product_logo = 'blank' %} +{% elsif product_name contains 'Portfolio' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Portfolio.svg' %} +{% elsif product_name contains 'Program Review' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Program+Review.svg' %} +{% elsif product_name contains 'Planning' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Planning.svg' %} +{% elsif product_name contains 'Accreditation' %} + {% assign product_logo = 'https://cdn.northpass.io/anthology/Accreditation.svg' %} +{% elsif product_name contains '101' %} + {% assign product_logo = 'blank' %} +{% elsif product_name contains 'Academy Use & Navigation' %} + {% assign product_logo = 'blank' %} +{% elsif product_name contains 'Data Strategy' %} + {% assign product_logo = 'blank' %} +{% elsif product_name contains 'Faculty Development' %} + {% assign product_logo = 'blank' %} +{% elsif product_name contains 'Power BI' %} + {% assign product_logo = 'blank' %} +{% elsif product_name contains 'Professional Development' %} + {% assign product_logo = 'blank' %} +{% else %} + {% assign product_logo = 'blank' %} +{% endif %} + +{% if product_logo contains 'blank' %} + + {{ product_name }} + +{% else %} + + + +{% endif %} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_resources.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_resources.html.liquid new file mode 100644 index 00000000..b562345f --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_resources.html.liquid @@ -0,0 +1,73 @@ +
+
+
+ Resources +
+
+
+
Tutorials
+ + Download PDF + + +
+
+
Templates
+ + Download PDF + + +
+
+
+ + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_sub_navigation.html.liquid new file mode 100644 index 00000000..2fe4c5f9 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_sub_navigation.html.liquid @@ -0,0 +1,15 @@ + diff --git a/Custom_Templates/customer_templates/Anthology-Production/_training_events_dashboard.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_training_events_dashboard.html.liquid new file mode 100644 index 00000000..c65bf347 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_training_events_dashboard.html.liquid @@ -0,0 +1,20 @@ + diff --git a/Custom_Templates/customer_templates/Anthology-Production/_training_events_index.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_training_events_index.html.liquid new file mode 100644 index 00000000..969adff4 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_training_events_index.html.liquid @@ -0,0 +1,76 @@ +{% if training_events.enrolled.any? or training_events.available.any? %} + {% if training_events.enrolled.any? %} + {% assign enrolledEvents = 0 %} + {% for training_event in training_events.enrolled %} + {% assign enrolledEvents = enrolledEvents | plus: 1 %} + {% endfor %} +
+ {%- comment -%} {% if enrolledEvents > 3 %} + + {% else %} + {% endif %} {%- endcomment -%} +
Registered
+ +
+ {% for training_event in training_events.enrolled %} + {% include "cards_training_event" with training_event %} + {% endfor %} +
+
+ {% endif %} + + {% if training_events.available.any? %} + {% assign availableEvents = 0%} + {% for training_event in training_events.available %} + {% assign availableEvents = availableEvents | plus: 1 %} + {% endfor %} + +
+ {%- comment -%} {% if availableEvents > 3 %} + + {% else %} + {% endif %} {%- endcomment -%} +
Upcoming
+ +
+ {% for training_event in training_events.available %} + {% include "cards_training_event" with training_event %} + {% endfor %} +
+
+ {% endif %} +{% else %} + {% include "training_events_zero_state" %} +{% endif %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/_training_events_zero_state.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/_training_events_zero_state.html.liquid new file mode 100644 index 00000000..076b789e --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/_training_events_zero_state.html.liquid @@ -0,0 +1,9 @@ +
+
+ {% t .empty %} +
+ {% t .empty %} +
diff --git a/Custom_Templates/customer_templates/Anthology-Production/dashboard.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/dashboard.html.liquid new file mode 100644 index 00000000..14c1bca2 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/dashboard.html.liquid @@ -0,0 +1,229 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} + +
+
+ {% include "profile_card" %} + +
+
+ Dashboard +
+ +
+ {%- comment -%} =============== THIS IS WHERE THE SWAPPER WILL LIVE =============== {%- endcomment -%} +
+
+ Resources +
+
+ Live Events +
+ {% assign completedCourseFound = false %} + {% if courses.enrolled.any? %} + {% for course in courses.enrolled %} + {% if course.progress == 100 %} + {% assign completedCourseFound = true %} + {% endif %} + {% endfor %} + {% endif %} + {% if completedCourseFound %} +
+ Completed +
+ {% endif %} +
+ + {%- comment -%} =============== THIS IS WHERE THE PRODUCT FILTER WILL LIVE =============== {%- endcomment -%} +
+ {% include "filter_by_product", page: 'Dashboard' %} +
+
+ +
+ {% assign ipCourseFound = false %} + {% if courses.enrolled.any? %} + {% for course in courses.enrolled %} + {% if course.progress > 0 and course.progress < 100 %} + {% assign ipCourseFound = true %} + {% endif %} + {% endfor %} + {% endif %} + {% if ipCourseFound %} + {% include "courses_index_in_prog", outerClass: "dashboard-courses-index" %} + {% endif %} + + {%- comment -%} {% if courses.enrolled.any? %} + {% include "courses_index", outerClass: "dashboard-courses-index" %} + {% else %} + {% capture message %} + {% t shared.zero_state.courses.index, + key: current_school.course_vocabulary + %} + {% endcapture %} + {% include "courses_zero_state", message: message %} + {% endif %} {%- endcomment -%} +
+ +
+ {% include "training_events_index" %} +
+ +
+ {% assign completedCourseFound = false %} + {% if courses.enrolled.any? %} + {% for course in courses.enrolled %} + {% if course.progress == 100 %} + {% assign completedCourseFound = true %} + {% endif %} + {% endfor %} + {% endif %} + {% if completedCourseFound %} + {% include "courses_index_completed", outerClass: "dashboard-courses-index" %} + {% endif %} +
+
+
+
+{% include "footer" %} + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/homepage.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/homepage.html.liquid new file mode 100644 index 00000000..13c1f49c --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/homepage.html.liquid @@ -0,0 +1,225 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.in_catalog %} + +
+ {{ homepage.headline }} +
+
+ Welcome to Anthology Academy +
+
+ Benefit from expert training and on-demand learning content to improve skills and ensure your team is getting the best Anthology experience possible. +
+
+
+
+
+ {% include "sub_navigation" %} +
+ +
+ +
+
Catalog
+
Explore our collection of learning resources
+
+ +
+
+ Search: +
+ + +
+
+ +
+ Filter By: +
+ {%- comment -%} Filter By: {%- endcomment -%} + {% include "filter_by_product", page: 'Homepage' %} + + {% capture label %}{% t shared.filters.by_category %}{% endcapture %} + {% if current_school.filterable_categories.any? %} + {% + include "filter_by_category", + label: label + %} + {% endif %} +
+
+
+ +
+ + + {% assign renderPopular = false %} + {% assign totalCount = 0 %} + {% if courses.enrolled.any? %} + {% for course in courses.enrolled %} + {% if course.properties.most_popular == true %} + {% assign totalCount = totalCount | plus : 1 %} + {% assign renderPopular = true %} + {% endif %} + {% endfor %} + {% endif %} + + {% if renderPopular == true %} + {%- comment -%} {% if totalCount > 3 %} + {% include "popular_courses_carousel" %} + {% else %} + {% endif %} {%- endcomment -%} + {% include "popular_courses_non_carousel" %} + {% endif %} + + {% if courses.enrolled.any? %} + {% include "courses_catalog" %} + {% else %} + {% capture message %} + {% t shared.zero_state.courses.catalog, + key: current_school.course_vocabulary + %} + {% endcapture %} + + {% include "courses_zero_state", message: message %} + {% endif %} + +
+{% include "footer" %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Anthology-Production/learning_paths.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/learning_paths.html.liquid new file mode 100644 index 00000000..40470d95 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/learning_paths.html.liquid @@ -0,0 +1,13 @@ +{% include "header" %} +
+
+
+ {% t shared.learning_paths %} +
+
+ {% t .subtitle %} +
+ {% include "learning_paths_index", items: learning_paths.available %} +
+
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Anthology-Production/styles.css.liquid b/Custom_Templates/customer_templates/Anthology-Production/styles.css.liquid new file mode 100644 index 00000000..b8fdfa26 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/styles.css.liquid @@ -0,0 +1,180 @@ + /* + 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 }} +*/ + +@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap'); + +html, +body{ + color: #000000; + font-family: 'Nunito Sans', sans-serif; +} + +body, +main{ + background-color: #FEFEFE; +} + +/* HEADER STYLES */ + +.np-header{ + border-top: 15px solid #f6f9fc; + border-bottom: 2px solid #f6f9fc; + height: 95px; + padding: 0 22px; +} + +.np-header-content{ + justify-content: space-between; +} + +.np-header-logo{ + flex-grow: unset; +} + +.np-header-desktop-nav{ + justify-content: flex-end; + padding-top: 20px; + flex-grow: unset; +} + +.np-header-mobile-menu-nav{ + position: unset; +} + +.np-header-avatar{ + align-items: center; + height: 100%; +} + +.desktop-avatar-button{ + margin: 0; + margin-right: 11px; +} + +.header-username{ + font-size: 16px; + font-weight: 400; + line-height: 25px; +} + + +.np-sub-navigation-content-item-active .np-sub-navigation-content-item-link, +.np-sub-navigation-content-item-active .np-sub-navigation-content-item-bar{ + color: #0A0A0A +} + +/* GLOBAL CARD STYLES */ + +.np-card-padding{ + padding: 15px 16px +} + +/* COURSE CARDS */ + +.course-card .np-card-container{ + border-radius: 0; + box-shadow: 0 3px 30px rgba(0,0,0,.1) +} + +.course-card .np-card-image{ + border-radius: 0; +} + +.card-bottom-details{ + align-items: center; + display: flex; + font-size: 0.875em; + flex-direction: row; + justify-content: space-between; +} + +/* CAROUSEL BUTTON STYLES */ +.carousel-buttons-container{ + /* align-items: center; + display: flex; + flex-direction: row; + justify-content: space-between; +} + +.next-carousel-button, +.previous-carousel-button{ + align-items: center; + display: flex; + height: 28px; + justify-content: center; + margin-bottom: 12px; + width: 28px; +} + +.next-carousel-button{ + margin-left: 39px; +} + +.next-carousel-button:hover, +.previous-carousel-button:hover{ + cursor: pointer; +} + +.fa-arrow-left, +.fa-arrow-right{ + font-size: 24px; +} */ + +/* EVENT CARDS */ +.event-card{ + min-width: 0; +} + +@media screen and (min-width: 768px){ + .event-card{ + padding: 0 0 64px 32px !important; + } +} + +/* FILTER STYLES */ +.np-filter{ + justify-content: center; + margin-bottom: 0; + margin-right: 15px; +} + +.filter-buttons-container{ + align-items: center; + display: flex; + flex-direction: row; +} + +.product-filter-dropdown, +.category-filter-dropdown{ + background-color: #fefefe; + border: 1px solid #ce9dc7; + border-radius: 30px; + font-weight: 700; + height: 60px; + line-height: 1; + padding-top: 12px; + text-decoration: none +} + +@media screen and (min-width: 768px){ + .np-filter{ + margin-top: 0; + margin-bottom: 0; + } +} + +/* HERO STYLING */ +@media screen and (min-width: 768px){ + .np-homepage-hero{ + margin: 0 -24px; + } +} diff --git a/Custom_Templates/customer_templates/Anthology-Production/training_events.html.liquid b/Custom_Templates/customer_templates/Anthology-Production/training_events.html.liquid new file mode 100644 index 00000000..68b3a679 --- /dev/null +++ b/Custom_Templates/customer_templates/Anthology-Production/training_events.html.liquid @@ -0,0 +1,18 @@ +{% include "header" %} +
+
+
+
+ {% t .title %} +
+
+ {% t .subtitle %} +
+
+
+ {% include "training_events_filter" %} +
+
+ {% include "training_events_index" %} +
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Artera_internal/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Artera_internal/_sub_navigation.html.liquid index 221d88c1..cc40848b 100644 --- a/Custom_Templates/customer_templates/Artera_internal/_sub_navigation.html.liquid +++ b/Custom_Templates/customer_templates/Artera_internal/_sub_navigation.html.liquid @@ -9,10 +9,13 @@ {% elsif link.label == "Home" %} + {% elsif link.label == "Catalog" %} + {% else %} {% endif %} diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/_cards_course.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/_cards_course.html.liquid new file mode 100644 index 00000000..79352376 --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/_cards_course.html.liquid @@ -0,0 +1,68 @@ +
+
+
+ {% if course.ribbon %} +
+ {{ course.ribbon }} +
+ {% endif %} + {{ course.name | split: ' v2' | first }} +
+
+

+ {% if course.name contains "v2" %} + {{ course.name | split: ' v2' | first }} + {% elsif course.name contains "v3" %} + {{ course.name | split: ' v3' | first }} + {% else %} + {{ course.name }} + {% endif %} +

+ {% comment %}
+
+ {{course.properties.np_course_rating}} ({{course.properties.np_course_rating_count}}) +
+ +
{% endcomment %} +
+
+ {{ course.instructor_names }} +
+ +
+
+
+
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/_cards_course_lp.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/_cards_course_lp.html.liquid new file mode 100644 index 00000000..fed00400 --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/_cards_course_lp.html.liquid @@ -0,0 +1,91 @@ +
+
+
+
+
+
+ +
Course
+
+ {% comment %}
+
+ {{course.properties.np_course_rating}} +
+ +
{% endcomment %} +
+
+
Course
+ +
+ +
+
+

+ {% if course.name contains "v2" %} + {{ course.name | split: ' v2' | first }} + {% elsif course.name contains "v3" %} + {{ course.name | split: ' v3' | first }} + {% else %} + {{ course.name }} + {% endif %} +

+ + {% comment %}
+
+ {{course.properties.np_course_rating}} +
+ +
{% endcomment %} +
+
+ {{ course.instructor_names }} +
+ +
+ {{ course.full_description }} +
+ +
+ {% t shared.progress, count: course.progress %} +
+ +
+
+
+
+ + +
+
+
+
+
+
+
+
+
+ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/_course_header.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/_course_header.html.liquid new file mode 100644 index 00000000..d296d1c9 --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/_course_header.html.liquid @@ -0,0 +1,33 @@ +
+ + + + {% if course.name contains "v2" %} + {{ course.name | split: ' v2' | first }} + {% elsif course.name contains "v3" %} + {{ course.name | split: ' v3' | first }} + {% else %} + {{ course.name }} + {% endif %} + +
+
+ Learn how in this {{ course.properties.course_time}} {{ current_school.course_vocabulary }} + + +
+{{ course.name | split: ' v2' | first }} + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/_course_mobile_view.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/_course_mobile_view.html.liquid new file mode 100644 index 00000000..9321736e --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/_course_mobile_view.html.liquid @@ -0,0 +1,52 @@ +
+ {% include "course_header" %} +
+ {% include "course_progress_and_cta" %} +
+
+ +{% if course.progress == 0 %} + {% comment %}
+ {% include "course_description" %} +
{% endcomment %} + {% if course.id == "1683955c-1edf-44c3-a6fa-d2bbeb693525" or course.id == "6b82ee8b-1120-4cf8-9f49-56458b6ea4ee" or course.id == "0bf212ae-aeea-4b4c-a1e1-de2ac4e43143" %} +
+ {% include "course_description" %} +
+ {% else %} +
+ {% include "course_outline" %} +
+ {% endif %} +{% else %} + {% if course.id == "1683955c-1edf-44c3-a6fa-d2bbeb693525" or course.id == "6b82ee8b-1120-4cf8-9f49-56458b6ea4ee" or course.id == "0bf212ae-aeea-4b4c-a1e1-de2ac4e43143" %} +
+ {% include "course_description" %} +
+ {% else %} +
+ {% include "course_outline" %} +
+ {% endif %} + {% comment %}
+ {% include "course_description" %} +
{% endcomment %} +{% endif %} +{% comment %} +{% if course.categories.any? %} +
+ {% include "course_categories" %} +
+{% endif %} {% endcomment %} + +{% if course.instructors.any? %} +
+ {% include "course_instructors" %} +
+{% endif %} + +{% if course.events.any? %} +
+ {% include "course_events" %} +
+{% endif %} diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/_course_progress_and_cta.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/_course_progress_and_cta.html.liquid new file mode 100644 index 00000000..c65d7aaf --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/_course_progress_and_cta.html.liquid @@ -0,0 +1,60 @@ +{% comment %}
+
+ {% t .header %} +
+
+
+
+
+ +
+ {% t shared.progress, count: course.progress %} +
+
{% endcomment %} + +{% if course.learner_can_retake? %} +
+ {% form_authenticity_token %} + +
+{% else %} + + {% if course.enrolled? == false %} + {% t shared.enroll %} + {% elsif course.started? == false %} + Get Started Now + {% elsif course.completed? %} + {% t shared.course.view, key: current_school.course_vocabulary %} + {% else %} + {% t shared.continue %} + {% endif %} + +{% endif %} + + + diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/_courses_index.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/_courses_index.html.liquid new file mode 100644 index 00000000..1aebf3ee --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/_courses_index.html.liquid @@ -0,0 +1,71 @@ +{% assign completed_courses_count = 0%} +{% assign first_level_completed = false %} +{% assign orientation_course = '91007f87-8d34-4f17-80fd-bd8cb44395e4' %} +{% assign ANZ_group = 'eeabc17d-8364-42fc-b667-c83ca18797f8' %} +{% assign ANZ = false %} +{% assign first_level_courses = '0c3468c6-a6b1-47ca-ad01-49983bf11808,d770f3b2-029e-4def-a420-7841edb1234f,d4227707-e8d4-42dc-a80c-e7d60deb37f6' | split: ',' %} + + +{% for group in current_person.groups %} + {% if group.id == ANZ_group %} + {% assign ANZ = true %} + {% break %} + {% endif %} +{% endfor %} + +{% for course in courses.enrolled %} + {% for cat in course.categories %} + {% if cat.name == "Dasher101" %} + {% if course.progress == 100%} + {% assign completed_courses_count = completed_courses_count | plus: 1 %} + {% endif %} + {% endif %} + {% endfor %} + {% if ANZ and first_level_completed == false %} + {% if first_level_courses contains course.id %} + {% if course.completed? %} + {% assign first_level_completed = true %} + {% endif %} + {% endif %} + {% endif %} +{% endfor %} + +{% if courses.enrolled.any? %} + + {% if completed_courses_count > 7%} +
+ {% for course in courses.enrolled %} + {% assign course_categories = course.categories | map: 'name' %} + {% if course_categories contains "Feedback" %} + {% include 'cards_course_lp' with course %} + {% endif %} + {% endfor %} +
+ {% endif %} +
+ {% if ANZ %} + {% for course in courses.enrolled %} + {% assign course_categories = course.categories | map: 'name' %} + {% unless course_categories contains "Feedback" %} + {% if course.id != orientation_course or first_level_completed %} + {% include "cards_course" with course %} + {% endif %} + {% endunless %} + {% endfor %} + {% else %} + {% for course in courses.enrolled %} + {% assign course_categories = course.categories | map: 'name' %} + {% unless course_categories contains "Feedback" %} + {% include "cards_course" with course %} + {% endunless %} + {% endfor %} + {% endif %} +
+{% 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/DoorDash Resource Hub/_footer.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/_footer.html.liquid new file mode 100644 index 00000000..f551094c --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/_footer.html.liquid @@ -0,0 +1,115 @@ +{% if groups contains 'NZ Mandatory Training' %} + {% assign nz_status = true%} +{% else %} + {% assign nz_status = false%} +{% endif %} +
+ + + +
+ +{% if nz_status %} + +{% endif %} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/_french_lang.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/_french_lang.html.liquid new file mode 100644 index 00000000..266084cf --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/_french_lang.html.liquid @@ -0,0 +1,468 @@ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/_group_selection.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/_group_selection.html.liquid new file mode 100644 index 00000000..1d4a21cf --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/_group_selection.html.liquid @@ -0,0 +1,128 @@ +{% if groups contains 'NZ Mandatory Training' %} + {% assign nz_status = true%} +{% else %} + {% assign nz_status = false%} +{% endif %} + +
+
+ What type of vehicle do you have? +
+
+ + +
+
+ + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/_header.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/_header.html.liquid new file mode 100644 index 00000000..7da4b048 --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/_header.html.liquid @@ -0,0 +1,217 @@ + + + +{% assign ANZ_group = 'eeabc17d-8364-42fc-b667-c83ca18797f8' %} +{% assign groups = current_person.groups | map: 'name'%} + +{% comment %} Single variable determining if user is part of NZ training group {% endcomment %} +{% if groups contains 'NZ Mandatory Training' %} + {% assign nz_status = true%} +{% else %} + {% assign nz_status = false%} +{% endif %} + +{% if current_school.id == '30e76dee-eb3f-46d1-9faf-852e8650287f' %} + {% comment %} sandbox school variables {% endcomment %} + {% assign ANZ_group = 'f7cf641a-3198-4897-81c9-993ca28f7f6c' %} +{% endif %} +{% assign ANZ = false %} +{% for group in current_person.groups %} + {% if group.id == ANZ_group %} + {% assign ANZ = true %} + {% break %} + {% endif %} +{% endfor %} +{% if current_school.properties.anz_address_form and current_person.signed_in? and current_person.properties.learner_vehicle == "None" and ANZ == true %} + {% unless current_person.email contains "+preview" %} + + {% endunless %} +{% endif %} + +
+
+ {% comment %}
+ {% if current_person.signed_in? %} + + + {% endif %} +
{% endcomment %} + {% if current_school.logo_url %} +

+ {% comment %} {% endcomment %} + {{ current_school.name }} + {% comment %} {% endcomment %} +

+ {% else %} + + {{ current_school.name }} + + {% endif %} + +
+ +
+ + {% comment %} {% if current_person.signed_in? %} + +
+ + +
+ {% else %} +
+ +{% include "messages" %} diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/_sub_navigation.html.liquid new file mode 100644 index 00000000..10b5295d --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/_sub_navigation.html.liquid @@ -0,0 +1,16 @@ + diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/course.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/course.html.liquid new file mode 100644 index 00000000..b9e0e954 --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/course.html.liquid @@ -0,0 +1,131 @@ +{% assign groups = current_person.groups | map: 'name'%} +{% if groups contains 'NZ Mandatory Training' %} + {% assign nz_status = true%} +{% else %} + {% assign nz_status = false%} +{% endif %} + +{% if course.properties.is_single_activity_course %} + + + +{% else %} + + {% include "header" %} +
+
+ {% include "course_desktop_view" %} +
+
+ {% include "course_mobile_view" %} +
+
+ {% include "footer" %} + + {% if nz_status %} + + {% endif %} + + +{% if course.properties.course_language == 'fr' %} + + {% if course.progress == 0 %} + + {% elsif course.progress > 0 and course.progress < 100 %} + + {% else %} + + {% endif %} + +{% endif %} + +{% if course.properties.course_language != 'fr' %} + +{% endif %} +{% endif %} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/courses.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/courses.html.liquid new file mode 100644 index 00000000..3c0dad74 --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/courses.html.liquid @@ -0,0 +1,91 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} +{% comment %} {% include "sub_navigation" %} {% endcomment %} +{% assign groups = current_person.groups | map: 'name'%} +{% assign completed_nz_count = 0 %} +{% assign nz_status = false%} + +{% if groups contains 'NZ Mandatory Training' %} + {% for course in courses.enrolled %} + {% if course.properties.nz_aus_courses %} + {% if course.completed? %} + {% assign completed_nz_count = completed_nz_count | plus: 1 %} + {% endif %} + {% endif %} + {% endfor %} +{% endif %} + +
+
+ {% comment %} {% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %} {% endcomment %} +
Resource Center
+
+
+ {% comment %} {% t .headline, key: current_school.course_vocabulary %} {% endcomment %} + Hey {{current_person.first_name}}, welcome to the Dasher Resource Center. You can review best practices used by experienced Dashers. + {% if groups contains 'NZ Mandatory Training' %} + {% include 'group_selection' %} + {% endif %} +
+ + {% if groups contains 'NZ Mandatory Training' %} + {% assign nz_status = true %} + {% if completed_nz_count > 0%} +
+
+ Completed Courses +
+
+
+ {% for course in courses.enrolled %} + {% if course.properties.nz_aus_courses %} + {% if course.completed? %} + {% include 'cards_course' with course, nz_status%} + {% endif %} + {% endif %} + {% endfor %} +
+ + {% endif %} + {% endif %} + +
+
Enrolled Courses
+
+ {% include "courses_index", class: "col-xs-12 col-sm-6 col-lg-4 np-stretch-content" %} +
+{% include "footer" %} + +{% if groups contains 'NZ Mandatory Training' %} + +{% endif %} diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/dashboard.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/dashboard.html.liquid new file mode 100644 index 00000000..cbeeee55 --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/dashboard.html.liquid @@ -0,0 +1,59 @@ + +{% comment %} +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} +
+
+
+ Hey {{current_person.first_name}}, welcome to the Dasher learning center. Educate yourself on the best practices used by the highest-rated Dashers. +
+
+
+ LEARNING CENTER +
+
+ + {% for course in courses.enrolled %} + {% for cat in course.categories %} + {% if cat.name == "Dasher101" %} + {% include 'cards_course_lp' with course %} + {% endif %} + {% endfor %} + {% endfor %} +
+
+ + {% if courses.enrolled.any? %} +
+ {% for course in courses.enrolled %} + {% for cat in course.categories %} + {% if cat.name != "Dasher101" %} +
+ {% include "cards_course" with course %} +
+ {% endif%} + {% endfor %} + {% endfor %} +
+ {% else %} + {% capture message %} + {% t shared.zero_state.courses.index, + key: current_school.course_vocabulary + %} + {% endcapture %} + {% include "courses_zero_state", message: message %} + {% endif %} + + {% if features.training_events? %} +
+
+ {% t .upcoming_events %} +
+ {% include "training_events_dashboard" %} +
+{% endif %} +
+
+{% include "footer" %} {% endcomment %} diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/infos.html.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/infos.html.liquid new file mode 100644 index 00000000..9410ba16 --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/infos.html.liquid @@ -0,0 +1,441 @@ + + + + + + + + + +{% assign ANZ_group = 'eeabc17d-8364-42fc-b667-c83ca18797f8' %} +{% if current_school.id == '30e76dee-eb3f-46d1-9faf-852e8650287f' %} + {% comment %} sandbox school variables {% endcomment %} + {% assign ANZ_group = 'f7cf641a-3198-4897-81c9-993ca28f7f6c' %} +{% endif %} +{% assign ANZ = false %} +{% for group in current_person.groups %} + {% if group.id == ANZ_group %} + {% assign ANZ = true %} + {% break %} + {% endif %} +{% endfor %} +{% if current_school.properties.anz_address_form == false or current_person.signed_in? == false or current_person.properties.learner_vehicle != 'None' or ANZ == false %} + +{% endif %} + + +
+
+ +
+ Let's order your Dasher Kit +
+
+ All activated Dashers will receive a kit including a DoorDash Hoodie, a delivery Hotbag, and PPE hygiene essentials. Enter your postal details so we can get the right kit sent to you
+
+
+ +
+ + +
+
+ +
+ +
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+ +
+
+ + +
+ +
+ + +
+
+ +
+ + +
+
+ +
+
+ + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/DoorDash Resource Hub/styles.css.liquid b/Custom_Templates/customer_templates/DoorDash Resource Hub/styles.css.liquid new file mode 100644 index 00000000..345a1661 --- /dev/null +++ b/Custom_Templates/customer_templates/DoorDash Resource Hub/styles.css.liquid @@ -0,0 +1,64 @@ +/* + 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 }} +*/ + +@font-face { + font-family: "Proxima Nova"; + src: url("https://s3.amazonaws.com/static.northpass.com/fonts/ProximaNova-Light.eot"); + src: url("https://s3.amazonaws.com/static.northpass.com/fonts/ProximaNova-Light.eot") format("embedded-opentype"), url("https://s3.amazonaws.com/static.northpass.com/fonts/ProximaNova-Light.woff") format("woff"), + url("https://s3.amazonaws.com/static.northpass.com/fonts/ProximaNova-Light.ttf") format("truetype"); + font-weight: 300; + font-style: normal; +} + +@font-face { + font-family: "Proxima Nova"; + src: url("https://s3.amazonaws.com/static.northpass.com/fonts/ProximaNova-Reg.otf"); + src: url("https://s3.amazonaws.com/static.northpass.com/fonts/proximanova-regular-webfont.woff") format("woff"); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: "Proxima Nova"; + src: url("https://s3.amazonaws.com/static.northpass.com/fonts/ProximaNova-Bold.eot"); + src: url("https://s3.amazonaws.com/static.northpass.com/fonts/ProximaNova-Bold.woff") format("woff"), url("https://s3.amazonaws.com/static.northpass.com/fonts/ProximaNova-Bold.ttf") format("truetype"); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: "TT Norms Pro"; + src: url(https://s3.amazonaws.com/static.northpass.com/fonts/TT+Norms+Pro+Bold.otf); + font-weight: bold; +} + +@font-face { + font-family: "TT Norms Pro-Regular"; + src: url("//db.onlinewebfonts.com/t/07bc241768c969f6b6a27a7bf0dfb490.eot"); + src: url("//db.onlinewebfonts.com/t/07bc241768c969f6b6a27a7bf0dfb490.eot?#iefix") format("embedded-opentype"), url("//db.onlinewebfonts.com/t/07bc241768c969f6b6a27a7bf0dfb490.woff2") format("woff2"), url("//db.onlinewebfonts.com/t/07bc241768c969f6b6a27a7bf0dfb490.woff") format("woff"), url("//db.onlinewebfonts.com/t/07bc241768c969f6b6a27a7bf0dfb490.ttf") format("truetype"), url("//db.onlinewebfonts.com/t/07bc241768c969f6b6a27a7bf0dfb490.svg#TT Norms Regular") format("svg"); + font-weight: normal; + font-style: normal; +} + +html, +body { + font-family: "Proxima Nova", "Roboto", sans-serif !important; +} + +.np-resource-subtitle, +.np-card-content-title { + color:#000; +} + +.np-form-action.np-button-big{ + border-radius: 30px; +} \ No newline at end of file diff --git a/CustomerNotes/Anthology.md b/CustomerNotes/Anthology.md index d525d113..6a6416c6 100644 --- a/CustomerNotes/Anthology.md +++ b/CustomerNotes/Anthology.md @@ -139,3 +139,8 @@ Questions: TODO: Can "allow retakes" default to yes for all newly created courses? +## 07/14/23 + +### Launch Day Nervousness + + diff --git a/CustomerNotes/Mizuno.md b/CustomerNotes/Mizuno.md index 45731da9..f452e6fd 100644 --- a/CustomerNotes/Mizuno.md +++ b/CustomerNotes/Mizuno.md @@ -47,3 +47,15 @@ Action items: * Make Mizuno Running available along the header - currently it is invisible. * Remove subnav completely. * Sign up page - store name + city + state - required. Store / City are text, States are drop down + +## 07/14/2023 + +### Mizuno Running Canada + +Mark Hansen handles both Golf and Running for both USA and Canada. + +TODO: Ask Casey if USA and CA codes can be interchangeable. +TODO: Connect with Matt on this whole things. + +They will need to add CA people to Groups. Custom Analytics. +Target Date: Early August. diff --git a/CustomerNotes/Pipedrive.md b/CustomerNotes/Pipedrive.md index bcda339b..0d3b847d 100644 --- a/CustomerNotes/Pipedrive.md +++ b/CustomerNotes/Pipedrive.md @@ -232,3 +232,35 @@ DONE: Directly ask Chloe about the technical complications. TODO: Push lang changes from Internal Sandbox to Main sandbox for James' testing. +## 07/14/2023 + +### Internal Training Demo + +Ines is from global training and onboarding +Guillerhme is support and does monthly trainings for support teams. + +Currently on TalentLMS but they hate it. It is only their host. +Use EZ Generator is their authoring tool. +Support: Portugal, Estonia, US +Global: 10 offices across the world + +They share a lot of content. +Sales and Success don't have trainers, so they use the same content. + +New Project: Pipedrive Academy + +Learning Paths (proper). A lot of things are possible in TLMS, but not intuitive. +No Learning Path Cover page - everything is separate. + +They also host internal trainings hosted by internal coaches. Soft skills, feedback, workshops, etc. +It would be nice to organize and manager sessions through the LMS. +Live Webinar Trainings +Waiting list would be nice. Not a deal breaker. + +Reporting is another hugely important aspect. +Portugal legal requirement: 40 hours per year per employee. Auditors will check this. +One single source of truth with all the trainings that have happened. + +HRIS: BambooHR, integrating very basically. + +Last year they were already window shopping for LMS. Ines watched a demo of Northpas.