From f95a314ef40d5824572472907209979264d96837 Mon Sep 17 00:00:00 2001 From: Norm Rasmussen Date: Thu, 4 Aug 2022 21:16:13 -0400 Subject: [PATCH] Chek --- .../customer_templates/.DS_Store | Bin 10244 -> 10244 bytes .../Chek/_header.html.liquid | 119 ++++++++++++++++++ .../_learning_path_desktop_view.html.liquid | 85 +++++++++++++ .../Chek/dashboard.html.liquid | 32 +++++ .../customer_templates/Chek/styles.css.liquid | 69 ++++++++++ 5 files changed, 305 insertions(+) create mode 100644 NP_Custom_Templates/customer_templates/Chek/_header.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Chek/_learning_path_desktop_view.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Chek/dashboard.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Chek/styles.css.liquid diff --git a/NP_Custom_Templates/customer_templates/.DS_Store b/NP_Custom_Templates/customer_templates/.DS_Store index 5e6b8838ccaa4b6f56b2f5363abd079097ec743d..f9963a775e5ed31bbc4797d8549479395752a9d7 100644 GIT binary patch delta 178 zcmZn(XbG6$&uzlMz`)4BAi$85zWJVnCi}#Omd)%OEFAS92^I!th75*OhU}bl!{Frn z+ybB&48Y}b^Icq$a`Kaa5**WHWwe6)jyM9@Nb)IoHCtv^o delta 65 zcmZn(XbG6$FKWQRz`)4BAi%&-%#g&8%8 +
+
+
+ {% 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 %} +
+ +{% include "messages" %} \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Chek/_learning_path_desktop_view.html.liquid b/NP_Custom_Templates/customer_templates/Chek/_learning_path_desktop_view.html.liquid new file mode 100644 index 00000000..17b9eb16 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Chek/_learning_path_desktop_view.html.liquid @@ -0,0 +1,85 @@ +
+
+ {% t shared.learning_path.title %} + +
+
+ + + + {{ learning_path.name }} +
+
+ +
+
+
+ {{ learning_path.name }} +
+ {% include "learning_path_description" %} + {% include "learning_path_instructors" %} +
+
+
+
+
+ {% include "learning_path_progress_and_cta" %} +
+ {% include "learning_path_outline" %} +
+
+ + + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Chek/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Chek/dashboard.html.liquid new file mode 100644 index 00000000..7383276f --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Chek/dashboard.html.liquid @@ -0,0 +1,32 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} +{% include "sub_navigation" %} +
+
+
+ {% if features.learning_paths? %} +
+ {% t shared.learning_paths %} +
+ {% include "learning_paths_index", items: learning_paths.enrolled %} + {% endif %} +
+ {% if features.training_events? %} +
+
+ {% t .upcoming_events %} +
+ {% include "training_events_dashboard" %} +
+ {% endif %} +
+
+
+
+ {% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %} +
+ {% include "courses_index", class: "col-xs-12 col-sm-4 np-stretch-content" %} +
+
+
+{% include "footer" %} diff --git a/NP_Custom_Templates/customer_templates/Chek/styles.css.liquid b/NP_Custom_Templates/customer_templates/Chek/styles.css.liquid new file mode 100644 index 00000000..69843065 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Chek/styles.css.liquid @@ -0,0 +1,69 @@ + /* + 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 }} +*/ + + body { + font-family: Soleil, Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + } + + @media screen and (min-width: 768px) { + .np-header { + height: 65px !important; + } + + .np-header-logo { + justify-content: flex-end !important; + } + + .np-header-avatar-image, + .np-header-logo-image { + height: 38px !important; + } + + .np-header-desktop-nav { + width: 0%; + } + } + + .np-header-font-background-color { + background: #1d1d1b; + } + + .np-footer { + background: #1d1d1b; + } + + .np-footer-logo-image { + filter: grayscale(0) contrast(1) !important; + height: 40px !important; + opacity: 1 !important; + } + + .np-footer-support-help { + color: #fff !important; + font-weight: 700; + } + + .np-footer-support-item { + color: #fff !important; + font-size: 14px; + text-align: center; + } + + .np-footer+.np-powered-by { + background: #1d1d1b !important; + } + + .np-powered-by-link { + color: #fff !important; + font-size: 13px; + text-decoration: none; + } \ No newline at end of file