diff --git a/.DS_Store b/.DS_Store
index 2c113ecf..71643356 100644
Binary files a/.DS_Store and b/.DS_Store differ
diff --git a/Google_Scripts/.AE_Reminders_Daily.gs.swp b/Google_Scripts/.AE_Reminders_Daily.gs.swp
new file mode 100644
index 00000000..c26df6e9
Binary files /dev/null and b/Google_Scripts/.AE_Reminders_Daily.gs.swp differ
diff --git a/Google_Scripts/AE_Reminders_Daily.gs b/Google_Scripts/AE_Reminders_Daily.gs
new file mode 100644
index 00000000..1e179640
--- /dev/null
+++ b/Google_Scripts/AE_Reminders_Daily.gs
@@ -0,0 +1,135 @@
+// Setup of the sheet
+const sheet = SpreadsheetApp.getActiveSheet();
+
+// Setup of the date range to compare. Currently, it is using 5 days until Present.
+var now = new Date();
+var formatNow = Utilities.formatDate(now, 'America/New_York', 'MM/dd/yyyy'); // Today
+var daysToSubtract = 5;
+var withinWeek = new Date(now.getTime()-5*(3600*24*1000));
+var formatWeek = Utilities.formatDate(withinWeek, 'America/New_York', 'MM/dd/yyyy'); // 5 Days ago
+
+/*
+ This function will create two empty arrays, one for the list of missed entries and one for tagging users in Slack
+ First, the function gets the data ranges in spreadsheed and adds those columns to an array index.
+ Second, the for loop cycles through the super long array (4 results per line). Based on the if statement,
+ the loop removes all arrays that don't fit the statement.
+*/
+
+function findMeetings() { // Setting up data range and empty arrays
+ var startRow = 2; // First row of data to process
+ var numRows = sheet.getLastRow()-1; // Number of rows to process
+ var dataRange = sheet.getRange(startRow, 1, numRows, sheet.getLastColumn());
+ var data = dataRange.getValues();
+ var slackingAEListOne = [];
+ var tagList = [];
+
+ for (i in data) { // For a data row within the entire data range
+ var row = data[i];
+ let attended = row[6]; // Column G
+ var name = row[1]; // Column - B
+ var date = Utilities.formatDate(row[3],'America/New_York','MM/dd/yyyy'); // Column - D
+ var company = row[4]; // Column - E
+ let missedEntries = [name, date, company, attended];
+ // Adding a For Loop will pull a result for EACH element, aka 4 results per line. This pulls one for each group of missedEntries
+ // This then removes the last value (attended, since we already know it is a blank), converts to a string, and adds to a new array
+ if ((missedEntries[3] == "") && (missedEntries[1] >= formatWeek) && (missedEntries[1] <= formatNow)) {
+ missedEntries.pop();
+ missedEntries.toString();
+ slackingAEListOne.push(missedEntries);
+ };
+ };
+ // Now outside of the if statement:
+ // the array is built, and we want each group to be on a new line, remove the commas and add a hyphen.
+ var slackingAEListTwo = slackingAEListOne.splice(1).join('\n');
+ var finalAEList = slackingAEListTwo.replace(/,/g, ' - ')
+
+ // This if statement is going to only tag those who appear in the previous list.
+ // No need to tag people who have done their work and contribute to clean data.
+ if (finalAEList.includes('Norm')) {
+ tagList.push('<@U020KRBDSDQ>');
+ }
+ if (finalAEList.includes('Dan')) {
+ tagList.push('<@U01P7DTFSQZ>');
+ }
+ if (finalAEList.includes('Jon')) {
+ tagList.push('<@U020YF0Q98R>');
+ }
+ if (finalAEList.includes('Charles')) {
+ tagList.push('<@U01286MQUS2>');
+ }
+ var tagUsers = tagList.toString();
+
+ /* Now, we're building the payload for the Slack Message.
+ This is very specific and prone to errors, so check that it works using Slack's tool:
+ https://app.slack.com/block-kit-builder/ */
+
+ let payloadText =
+{
+ "blocks": [
+ {
+ "type": "section",
+ "text": {
+ "type": "mrkdwn",
+ "text": ":bell: *Have you filled out the Sales New Meeting Tracker?* :bell:"
+ }
+ },
+ {
+ "type": "divider"
+ },
+ {
+ "type": "section",
+ "text": {
+ "type": "mrkdwn",
+ "text": "If you're tagged, you haven't filled it out."
+ }
+ },
+ {
+ "type": "section",
+ "text": {
+ "type": "mrkdwn",
+ "text": finalAEList // Sends list with AE, meeting date, and company
+ }
+ },
+ {
+ "type": "section",
+ "text": {
+ "type": "mrkdwn",
+ "text": "Here, a convenient link to the sheet!:point_right: :point_right: :point_right: :point_right:"
+ },
+ "accessory": {
+ "type": "button",
+ "text": {
+ "type": "plain_text",
+ "text": "Sales New Meeting Tracker",
+ "emoji": true
+ },
+ "value": "sales_tracker_link_123",
+ "url": "https://docs.google.com/spreadsheets/d/1o01hj9oOoAR4TeJxXDuA3R7bHNbyCB3eaGJunK6-ojg/edit#gid=0 | First Meeting Tracker",
+ "action_id": "button-action"
+ }
+ },
+ {
+ "type": "divider"
+ },
+ {
+ "type": "section",
+ "text": {
+ "type": "mrkdwn",
+ "text": tagUsers // Tags with slack user numbers if they appear in finalSend
+ }
+ }
+ ]
+};
+ // This is standard operating procedure to creating the payload and destination
+ const webhook = "https://hooks.slack.com/services/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";
+ const options = {
+ method: "post",
+ contentType: "application/json",
+ muteHttpExceptions: true,
+ payload: JSON.stringify(payloadText),
+ };
+ const sendMsg = UrlFetchApp.fetch(webhook, options);
+ var respCode = sendMsg.getResponseCode();
+ Logger.log(sendMsg); // Debug to confirm send
+ Logger.log(respCode); // Debug to show errors, if any
+};
diff --git a/Google_Scripts/New_SDR_Meetings_msg.gs b/Google_Scripts/New_SDR_Meetings_msg.gs
new file mode 100644
index 00000000..803091a1
--- /dev/null
+++ b/Google_Scripts/New_SDR_Meetings_msg.gs
@@ -0,0 +1,110 @@
+const sheetTwo = SpreadsheetApp.getActiveSheet();
+var now = new Date();
+var formatToday = Utilities.formatDate(now, 'America/New_York', 'MM/dd/yyyy');
+
+function newMeetings() {
+ var startRow = 2; // First row of data to process
+ var numRows = sheetTwo.getLastRow()-1; // Number of rows to process
+ var dataRange = sheetTwo.getRange(startRow, 1, numRows, sheet.getLastColumn());
+ var data = dataRange.getValues();
+ var sdrMeeting = [];
+
+ for (i in data) {
+ var row = data[i];
+ var sdr = row[0]; // Column A
+ var date = Utilities.formatDate(row[3],'America/New_York','MM/dd/yyyy'); // Column D
+ var company = row[4]; // Column E
+ var outbound = row[5]; // Column F
+ let sdrMeetingListOne = [sdr, date, company, outbound];
+ if ((sdrMeetingListOne[1] == formatToday) && (sdrMeetingListOne[0] != '') && (sdrMeetingListOne[3] == "Outbound")) {
+ sdrMeetingListOne.toString();
+ sdrMeeting.push(sdrMeetingListOne);
+ Logger.log(sdrMeetingListOne)
+ } else if ((sdrMeetingListOne[1] == formatToday) && (sdrMeetingListOne[0] != '')) {
+ let noMeetingText =
+ {
+ "blocks": [
+ {
+ "type": "section",
+ "text": {
+ "type": "mrkdwn",
+ "text": ":star: *C'mon team!* :star:"
+ }
+ },
+ {
+ "type": "divider"
+ },
+ {
+ "type": "section",
+ "text": {
+ "type": "mrkdwn",
+ "text": "No new meetings today? We can do better than that! Hustle!"
+ }
+ },
+ ]
+ }
+ const webhook = "https://hooks.slack.com/services/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";
+ const options = {
+ method: "post",
+ contentType: "application/json",
+ muteHttpExceptions: true,
+ payload: JSON.stringify(noMeetingText),
+ };
+ const sendMsg = UrlFetchApp.fetch(webhook, options);
+ var respCode = sendMsg.getResponseCode();
+ Logger.log(sendMsg);
+ Logger.log(respCode);
+ }
+ };
+ Logger.log(sdrMeeting);
+ var toSend = sdrMeeting.splice(1).join('\n');
+ var getEm = toSend.replace(/,/g, ' - ')
+ Logger.log(getEm)
+/*
+ let payloadMeetingText =
+{
+ "blocks": [
+ {
+ "type": "section",
+ "text": {
+ "type": "mrkdwn",
+ "text": ":star: *Pitter Patter!* :star:"
+ }
+ },
+ {
+ "type": "divider"
+ },
+ {
+ "type": "section",
+ "text": {
+ "type": "mrkdwn",
+ "text": "Here's who has meetings today. Get after it boys and girls!"
+ }
+ },
+ {
+ "type": "section",
+ "text": {
+ "type": "mrkdwn",
+ "text": getEm
+ }
+ },
+ {
+ "type": "image",
+ "image_url": "https://media.giphy.com/media/3ohjURBuAtWDV8d3SE/giphy.gif",
+ "alt_text": "inspiration"
+ }
+ ]
+}
+ //(array[0] + ", you still need to fill out the cells for" + array[2] + " from " + array[1] + "!\n");
+ const webhook = "https://hooks.slack.com/services/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";
+ const options = {
+ method: "post",
+ contentType: "application/json",
+ muteHttpExceptions: true,
+ payload: JSON.stringify(payloadText),
+ };
+ const sendMsg = UrlFetchApp.fetch(webhook, options);
+ var respCode = sendMsg.getResponseCode();
+ Logger.log(sendMsg);
+ Logger.log(respCode);*/
+};
\ No newline at end of file
diff --git a/Google_Scripts/Sheets>Jira.gs b/Google_Scripts/Sheets>Jira.gs
new file mode 100644
index 00000000..798bf43c
--- /dev/null
+++ b/Google_Scripts/Sheets>Jira.gs
@@ -0,0 +1,86 @@
+function myFunction() {
+ var URL = "https://northpass.atlassian.net/rest/api/2/issue";
+ var accountID = "6092af20d353800068863d15";
+ var token = "2NrKYv22TLWnxTo7EhU3633E";
+ var UserCredentials = "Basic " + Utilities.base64Encode(accountID+":"+token);
+
+ // Setting up data range and empty arrays
+ const sheet = SpreadsheetApp.getActiveSheet();
+
+ for (i in data) { // For a data row within the entire data range
+ var startRow = 2; // First row of data to process
+ var numRows = sheet.getLastRow()-1; // Number of rows to process
+ var dataRange = sheet.getRange(startRow, 1, numRows, sheet.getLastColumn());
+ var data = dataRange.getValues();
+ let row = data[i];
+ let name = row[1]; // Column - B
+ var meetingDate = Utilities.formatDate(row[3],'America/New_York','MM/dd/yyyy'); // Column - D
+ var company = row[4]; // Column - E
+ let list = [name, company, meetingDate];
+
+ if (list[0] == "Norm") {
+ Logger.log(list)
+ var data = {
+ "fields": {
+ "project" : {
+ "key" : "2NrKYv22TLWnxTo7EhU3633E"
+ },
+ "summary" : list[1],
+ "description" : "Meeting scheduled for " + list[3],
+ "date" : list[3],
+ "issuetype": {
+ "name" : Task
+ }
+ }
+ };
+ };
+ };
+
+ var payload = JSON.stringify(data);
+
+ var headers = { "Accept":"application/json",
+ "Content-Type":"application/json",
+ "Authorization":UserCredentials,
+ "muteHttpExceptions":"True"
+ }
+ var options = { "method":"POST",
+ "headers": headers,
+ "payload": payload
+ };
+
+ var response = UrlFetchApp.fetch(URL, options);
+ Logger.log(response);
+
+};
+
+// LONG JSON
+var data = {
+ "fields": {
+ "issuetype": {
+ "id" : "10203"
+ },
+ "parent": {
+ "key": "NORMPIPE",
+ "id": "10203",
+ },
+ "project" : {
+ "id" : "10052",
+ "key" : "NORMPIPE",
+ },
+ "description" : "Meeting scheduled for " + list[3],{
+ "type" : "doc",
+ "version" : 1,
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "text" : "Meeting scheduled for " + list[3],
+ "type" : "text",
+ }
+ ]
+ },
+ ]
+ },
+ },
+ };
\ No newline at end of file
diff --git a/NP_Custom_Templates/.DS_Store b/NP_Custom_Templates/.DS_Store
new file mode 100644
index 00000000..a6031977
Binary files /dev/null and b/NP_Custom_Templates/.DS_Store differ
diff --git a/customer_templates/.DS_Store b/NP_Custom_Templates/customer_templates/.DS_Store
similarity index 64%
rename from customer_templates/.DS_Store
rename to NP_Custom_Templates/customer_templates/.DS_Store
index 0e9a6aff..6f8a33e1 100644
Binary files a/customer_templates/.DS_Store and b/NP_Custom_Templates/customer_templates/.DS_Store differ
diff --git a/customer_templates/Boxligh_old_templates/_head.html.liquid b/NP_Custom_Templates/customer_templates/Boxligh_old_templates/_head.html.liquid
similarity index 100%
rename from customer_templates/Boxligh_old_templates/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/Boxligh_old_templates/_head.html.liquid
diff --git a/customer_templates/Boxlight_new_templates/_head.html.liquid b/NP_Custom_Templates/customer_templates/Boxlight_new_templates/_head.html.liquid
similarity index 100%
rename from customer_templates/Boxlight_new_templates/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/Boxlight_new_templates/_head.html.liquid
diff --git a/customer_templates/Boxlight_new_templates/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Boxlight_new_templates/homepage.html.liquid
similarity index 100%
rename from customer_templates/Boxlight_new_templates/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/Boxlight_new_templates/homepage.html.liquid
diff --git a/customer_templates/Boxlight_new_templates/styles.css.liquid b/NP_Custom_Templates/customer_templates/Boxlight_new_templates/styles.css.liquid
similarity index 100%
rename from customer_templates/Boxlight_new_templates/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/Boxlight_new_templates/styles.css.liquid
diff --git a/customer_templates/CameraIQ/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_cards_course.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_cards_course.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_cards_course.html.liquid
diff --git a/customer_templates/CameraIQ/_cards_featured_course.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_cards_featured_course.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_cards_featured_course.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_cards_featured_course.html.liquid
diff --git a/customer_templates/CameraIQ/_course_details.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_course_details.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_course_details.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_course_details.html.liquid
diff --git a/customer_templates/CameraIQ/_footer.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_footer.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_footer.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_footer.html.liquid
diff --git a/customer_templates/CameraIQ/_head.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_head.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_head.html.liquid
diff --git a/customer_templates/CameraIQ/_header.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_header.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_header.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_header.html.liquid
diff --git a/customer_templates/CameraIQ/_section_faqs.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_section_faqs.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_section_faqs.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_section_faqs.html.liquid
diff --git a/customer_templates/CameraIQ/_section_featured_photography(1).html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_section_featured_photography(1).html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_section_featured_photography(1).html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_section_featured_photography(1).html.liquid
diff --git a/customer_templates/CameraIQ/_section_featured_photography.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_section_featured_photography.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_section_featured_photography.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_section_featured_photography.html.liquid
diff --git a/customer_templates/CameraIQ/_section_popular_topics.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_section_popular_topics.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_section_popular_topics.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_section_popular_topics.html.liquid
diff --git a/customer_templates/CameraIQ/_section_tips_tricks.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_section_tips_tricks.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_section_tips_tricks.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_section_tips_tricks.html.liquid
diff --git a/customer_templates/CameraIQ/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/_sub_navigation.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/_sub_navigation.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/_sub_navigation.html.liquid
diff --git a/customer_templates/CameraIQ/catalog.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/catalog.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/catalog.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/catalog.html.liquid
diff --git a/customer_templates/CameraIQ/community.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/community.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/community.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/community.html.liquid
diff --git a/customer_templates/CameraIQ/homepage.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/homepage.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/homepage.html.liquid
diff --git a/customer_templates/CameraIQ/styles.css.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/styles.css.liquid
similarity index 100%
rename from customer_templates/CameraIQ/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/styles.css.liquid
diff --git a/customer_templates/CameraIQ/training_events.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/training_events.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/training_events.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/training_events.html.liquid
diff --git a/customer_templates/CameraIQ/videos.html.liquid b/NP_Custom_Templates/customer_templates/CameraIQ/videos.html.liquid
similarity index 100%
rename from customer_templates/CameraIQ/videos.html.liquid
rename to NP_Custom_Templates/customer_templates/CameraIQ/videos.html.liquid
diff --git a/customer_templates/ChildVenturesCA/_head.html.liquid b/NP_Custom_Templates/customer_templates/ChildVenturesCA/_head.html.liquid
similarity index 100%
rename from customer_templates/ChildVenturesCA/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/ChildVenturesCA/_head.html.liquid
diff --git a/NP_Custom_Templates/customer_templates/ChildVenturesCA/styles.css.liquid b/NP_Custom_Templates/customer_templates/ChildVenturesCA/styles.css.liquid
new file mode 100644
index 00000000..511e6f33
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/ChildVenturesCA/styles.css.liquid
@@ -0,0 +1,6 @@
+@font-face {
+ font-family: 'Roboto Slab' !important;
+ src: url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100&display=swap');
+}
+body, html, div {
+ font-family: 'Roboto Slab' !important;
\ No newline at end of file
diff --git a/customer_templates/Climbing_Norm/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/_cards_course.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/_cards_course.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/_cards_course.html.liquid
diff --git a/customer_templates/Climbing_Norm/_cards_featured_course.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/_cards_featured_course.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/_cards_featured_course.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/_cards_featured_course.html.liquid
diff --git a/customer_templates/Climbing_Norm/_course_details.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/_course_details.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/_course_details.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/_course_details.html.liquid
diff --git a/customer_templates/Climbing_Norm/_footer.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/_footer.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/_footer.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/_footer.html.liquid
diff --git a/customer_templates/Climbing_Norm/_head.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/_head.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/_head.html.liquid
diff --git a/customer_templates/Climbing_Norm/_header.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/_header.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/_header.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/_header.html.liquid
diff --git a/customer_templates/Climbing_Norm/_section_faqs.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/_section_faqs.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/_section_faqs.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/_section_faqs.html.liquid
diff --git a/customer_templates/Climbing_Norm/_section_instructors.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/_section_instructors.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/_section_instructors.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/_section_instructors.html.liquid
diff --git a/customer_templates/Climbing_Norm/_section_popular_topics.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/_section_popular_topics.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/_section_popular_topics.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/_section_popular_topics.html.liquid
diff --git a/customer_templates/Climbing_Norm/_section_professionals.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/_section_professionals.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/_section_professionals.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/_section_professionals.html.liquid
diff --git a/customer_templates/Climbing_Norm/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/_sub_navigation.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/_sub_navigation.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/_sub_navigation.html.liquid
diff --git a/customer_templates/Climbing_Norm/catalog.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/catalog.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/catalog.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/catalog.html.liquid
diff --git a/customer_templates/Climbing_Norm/community.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/community.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/community.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/community.html.liquid
diff --git a/customer_templates/Climbing_Norm/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/homepage.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/homepage.html.liquid
diff --git a/customer_templates/Climbing_Norm/styles.css.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/styles.css.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/styles.css.liquid
diff --git a/customer_templates/Climbing_Norm/training_events.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/training_events.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/training_events.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/training_events.html.liquid
diff --git a/customer_templates/Climbing_Norm/videos.html.liquid b/NP_Custom_Templates/customer_templates/Climbing_Norm/videos.html.liquid
similarity index 100%
rename from customer_templates/Climbing_Norm/videos.html.liquid
rename to NP_Custom_Templates/customer_templates/Climbing_Norm/videos.html.liquid
diff --git a/customer_templates/Crayon/_head.html.liquid b/NP_Custom_Templates/customer_templates/Crayon/_head.html.liquid
similarity index 100%
rename from customer_templates/Crayon/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/Crayon/_head.html.liquid
diff --git a/customer_templates/Crayon/styles.css.liquid b/NP_Custom_Templates/customer_templates/Crayon/styles.css.liquid
similarity index 100%
rename from customer_templates/Crayon/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/Crayon/styles.css.liquid
diff --git a/customer_templates/Employment_Hero/Guided Implementation/.DS_Store b/NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/.DS_Store
similarity index 100%
rename from customer_templates/Employment_Hero/Guided Implementation/.DS_Store
rename to NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/.DS_Store
diff --git a/customer_templates/Employment_Hero/Guided Implementation/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_cards_course.html.liquid
similarity index 100%
rename from customer_templates/Employment_Hero/Guided Implementation/_cards_course.html.liquid
rename to NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_cards_course.html.liquid
diff --git a/customer_templates/Employment_Hero/Guided Implementation/_cards_training_event.html.liquid b/NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_cards_training_event.html.liquid
similarity index 100%
rename from customer_templates/Employment_Hero/Guided Implementation/_cards_training_event.html.liquid
rename to NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_cards_training_event.html.liquid
diff --git a/customer_templates/Employment_Hero/Guided Implementation/_course_catagories.html.liquid b/NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_course_catagories.html.liquid
similarity index 100%
rename from customer_templates/Employment_Hero/Guided Implementation/_course_catagories.html.liquid
rename to NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_course_catagories.html.liquid
diff --git a/customer_templates/Employment_Hero/Guided Implementation/_courses_index.html.liquid b/NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_courses_index.html.liquid
similarity index 100%
rename from customer_templates/Employment_Hero/Guided Implementation/_courses_index.html.liquid
rename to NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_courses_index.html.liquid
diff --git a/customer_templates/Employment_Hero/Guided Implementation/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_sub_navigation.html.liquid
similarity index 100%
rename from customer_templates/Employment_Hero/Guided Implementation/_sub_navigation.html.liquid
rename to NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_sub_navigation.html.liquid
diff --git a/customer_templates/Employment_Hero/Guided Implementation/_training_events_dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_training_events_dashboard.html.liquid
similarity index 100%
rename from customer_templates/Employment_Hero/Guided Implementation/_training_events_dashboard.html.liquid
rename to NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/_training_events_dashboard.html.liquid
diff --git a/customer_templates/Employment_Hero/Guided Implementation/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/dashboard.html.liquid
similarity index 100%
rename from customer_templates/Employment_Hero/Guided Implementation/dashboard.html.liquid
rename to NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/dashboard.html.liquid
diff --git a/customer_templates/Employment_Hero/Guided Implementation/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/homepage.html.liquid
similarity index 100%
rename from customer_templates/Employment_Hero/Guided Implementation/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/Employment_Hero/Guided Implementation/homepage.html.liquid
diff --git a/customer_templates/Employment_Hero/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/Employment_Hero/_sub_navigation.html.liquid
similarity index 100%
rename from customer_templates/Employment_Hero/_sub_navigation.html.liquid
rename to NP_Custom_Templates/customer_templates/Employment_Hero/_sub_navigation.html.liquid
diff --git a/NP_Custom_Templates/customer_templates/ForesiteHealthcare/_head.html.liquid b/NP_Custom_Templates/customer_templates/ForesiteHealthcare/_head.html.liquid
new file mode 100644
index 00000000..b49e2433
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/ForesiteHealthcare/_head.html.liquid
@@ -0,0 +1,6 @@
+{% styles default %}
+{% styles colors %}
+{% styles custom %}
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/ForesiteHealthcare/styles.css.liquid b/NP_Custom_Templates/customer_templates/ForesiteHealthcare/styles.css.liquid
new file mode 100644
index 00000000..50944a80
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/ForesiteHealthcare/styles.css.liquid
@@ -0,0 +1,7 @@
+@font-face {
+ font-family: 'Montserrat' !important;
+ src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');
+}
+body, html, div {
+ font-family: 'Montserrat' !important;
+}
\ No newline at end of file
diff --git a/customer_templates/IkonSciences/styles.css.liquid b/NP_Custom_Templates/customer_templates/IkonSciences/styles.css.liquid
similarity index 100%
rename from customer_templates/IkonSciences/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/IkonSciences/styles.css.liquid
diff --git a/customer_templates/MachineMetrics/_head.html.liquid b/NP_Custom_Templates/customer_templates/MachineMetrics/_head.html.liquid
similarity index 100%
rename from customer_templates/MachineMetrics/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/MachineMetrics/_head.html.liquid
diff --git a/customer_templates/MachineMetrics/styles.css.liquid b/NP_Custom_Templates/customer_templates/MachineMetrics/styles.css.liquid
similarity index 100%
rename from customer_templates/MachineMetrics/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/MachineMetrics/styles.css.liquid
diff --git a/customer_templates/Menlo_Security/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/_cards_course.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/_cards_course.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/_cards_course.html.liquid
diff --git a/customer_templates/Menlo_Security/_cards_featured_course.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/_cards_featured_course.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/_cards_featured_course.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/_cards_featured_course.html.liquid
diff --git a/customer_templates/Menlo_Security/_course_details.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/_course_details.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/_course_details.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/_course_details.html.liquid
diff --git a/customer_templates/Menlo_Security/_footer.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/_footer.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/_footer.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/_footer.html.liquid
diff --git a/customer_templates/Menlo_Security/_head.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/_head.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/_head.html.liquid
diff --git a/customer_templates/Menlo_Security/_header.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/_header.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/_header.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/_header.html.liquid
diff --git a/customer_templates/Menlo_Security/_section_faqs.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/_section_faqs.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/_section_faqs.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/_section_faqs.html.liquid
diff --git a/customer_templates/Menlo_Security/_section_featured_customers.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/_section_featured_customers.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/_section_featured_customers.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/_section_featured_customers.html.liquid
diff --git a/customer_templates/Menlo_Security/_section_popular_topics.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/_section_popular_topics.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/_section_popular_topics.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/_section_popular_topics.html.liquid
diff --git a/customer_templates/Menlo_Security/_section_tips_tricks.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/_section_tips_tricks.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/_section_tips_tricks.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/_section_tips_tricks.html.liquid
diff --git a/customer_templates/Menlo_Security/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/_sub_navigation.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/_sub_navigation.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/_sub_navigation.html.liquid
diff --git a/customer_templates/Menlo_Security/catalog.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/catalog.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/catalog.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/catalog.html.liquid
diff --git a/customer_templates/Menlo_Security/community.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/community.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/community.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/community.html.liquid
diff --git a/customer_templates/Menlo_Security/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/homepage.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/homepage.html.liquid
diff --git a/customer_templates/Menlo_Security/styles.css.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/styles.css.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/styles.css.liquid
diff --git a/customer_templates/Menlo_Security/training_events.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/training_events.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/training_events.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/training_events.html.liquid
diff --git a/customer_templates/Menlo_Security/videos.html.liquid b/NP_Custom_Templates/customer_templates/Menlo_Security/videos.html.liquid
similarity index 100%
rename from customer_templates/Menlo_Security/videos.html.liquid
rename to NP_Custom_Templates/customer_templates/Menlo_Security/videos.html.liquid
diff --git a/customer_templates/Milner College/_dash_lp_index.html.liquid b/NP_Custom_Templates/customer_templates/Milner College/_dash_lp_index.html.liquid
similarity index 100%
rename from customer_templates/Milner College/_dash_lp_index.html.liquid
rename to NP_Custom_Templates/customer_templates/Milner College/_dash_lp_index.html.liquid
diff --git a/customer_templates/Milner College/_learning_paths_index.html.liquid b/NP_Custom_Templates/customer_templates/Milner College/_learning_paths_index.html.liquid
similarity index 100%
rename from customer_templates/Milner College/_learning_paths_index.html.liquid
rename to NP_Custom_Templates/customer_templates/Milner College/_learning_paths_index.html.liquid
diff --git a/customer_templates/Milner College/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Milner College/dashboard.html.liquid
similarity index 100%
rename from customer_templates/Milner College/dashboard.html.liquid
rename to NP_Custom_Templates/customer_templates/Milner College/dashboard.html.liquid
diff --git a/customer_templates/Milner College/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Milner College/homepage.html.liquid
similarity index 100%
rename from customer_templates/Milner College/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/Milner College/homepage.html.liquid
diff --git a/customer_templates/No_Discover_Button/_header.html.liquid b/NP_Custom_Templates/customer_templates/No_Discover_Button/_header.html.liquid
similarity index 100%
rename from customer_templates/No_Discover_Button/_header.html.liquid
rename to NP_Custom_Templates/customer_templates/No_Discover_Button/_header.html.liquid
diff --git a/customer_templates/No_Discover_Button/_messages.html.liquid b/NP_Custom_Templates/customer_templates/No_Discover_Button/_messages.html.liquid
similarity index 100%
rename from customer_templates/No_Discover_Button/_messages.html.liquid
rename to NP_Custom_Templates/customer_templates/No_Discover_Button/_messages.html.liquid
diff --git a/customer_templates/No_Discover_Button/homepage.html.liquid b/NP_Custom_Templates/customer_templates/No_Discover_Button/homepage.html.liquid
similarity index 100%
rename from customer_templates/No_Discover_Button/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/No_Discover_Button/homepage.html.liquid
diff --git a/customer_templates/Ogilvy/_cards_learning_path.html.liquid b/NP_Custom_Templates/customer_templates/Ogilvy/_cards_learning_path.html.liquid
similarity index 100%
rename from customer_templates/Ogilvy/_cards_learning_path.html.liquid
rename to NP_Custom_Templates/customer_templates/Ogilvy/_cards_learning_path.html.liquid
diff --git a/customer_templates/Ogilvy/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/Ogilvy/_sub_navigation.html.liquid
similarity index 100%
rename from customer_templates/Ogilvy/_sub_navigation.html.liquid
rename to NP_Custom_Templates/customer_templates/Ogilvy/_sub_navigation.html.liquid
diff --git a/customer_templates/Ogilvy/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Ogilvy/homepage.html.liquid
similarity index 100%
rename from customer_templates/Ogilvy/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/Ogilvy/homepage.html.liquid
diff --git a/customer_templates/Ogilvy/styles.css.liquid b/NP_Custom_Templates/customer_templates/Ogilvy/styles.css.liquid
similarity index 100%
rename from customer_templates/Ogilvy/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/Ogilvy/styles.css.liquid
diff --git a/customer_templates/One Network/.DS_Store b/NP_Custom_Templates/customer_templates/One Network/.DS_Store
similarity index 100%
rename from customer_templates/One Network/.DS_Store
rename to NP_Custom_Templates/customer_templates/One Network/.DS_Store
diff --git a/customer_templates/One Network/_completion_dashboard.html.liquid b/NP_Custom_Templates/customer_templates/One Network/_completion_dashboard.html.liquid
similarity index 100%
rename from customer_templates/One Network/_completion_dashboard.html.liquid
rename to NP_Custom_Templates/customer_templates/One Network/_completion_dashboard.html.liquid
diff --git a/customer_templates/One Network/_head.html.liquid b/NP_Custom_Templates/customer_templates/One Network/_head.html.liquid
similarity index 100%
rename from customer_templates/One Network/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/One Network/_head.html.liquid
diff --git a/customer_templates/One Network/_header.html.liquid b/NP_Custom_Templates/customer_templates/One Network/_header.html.liquid
similarity index 100%
rename from customer_templates/One Network/_header.html.liquid
rename to NP_Custom_Templates/customer_templates/One Network/_header.html.liquid
diff --git a/customer_templates/One Network/_progress_circle.html.liquid b/NP_Custom_Templates/customer_templates/One Network/_progress_circle.html.liquid
similarity index 100%
rename from customer_templates/One Network/_progress_circle.html.liquid
rename to NP_Custom_Templates/customer_templates/One Network/_progress_circle.html.liquid
diff --git a/customer_templates/One Network/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/One Network/_sub_navigation.html.liquid
similarity index 100%
rename from customer_templates/One Network/_sub_navigation.html.liquid
rename to NP_Custom_Templates/customer_templates/One Network/_sub_navigation.html.liquid
diff --git a/customer_templates/One Network/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/One Network/dashboard.html.liquid
similarity index 100%
rename from customer_templates/One Network/dashboard.html.liquid
rename to NP_Custom_Templates/customer_templates/One Network/dashboard.html.liquid
diff --git a/customer_templates/One Network/homepage.html.liquid b/NP_Custom_Templates/customer_templates/One Network/homepage.html.liquid
similarity index 100%
rename from customer_templates/One Network/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/One Network/homepage.html.liquid
diff --git a/customer_templates/One Network/styles.css.liquid b/NP_Custom_Templates/customer_templates/One Network/styles.css.liquid
similarity index 100%
rename from customer_templates/One Network/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/One Network/styles.css.liquid
diff --git a/customer_templates/OpenWallet/_achievements.html.liquid b/NP_Custom_Templates/customer_templates/OpenWallet/_achievements.html.liquid
similarity index 100%
rename from customer_templates/OpenWallet/_achievements.html.liquid
rename to NP_Custom_Templates/customer_templates/OpenWallet/_achievements.html.liquid
diff --git a/customer_templates/OpenWallet/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/OpenWallet/_cards_course.html.liquid
similarity index 100%
rename from customer_templates/OpenWallet/_cards_course.html.liquid
rename to NP_Custom_Templates/customer_templates/OpenWallet/_cards_course.html.liquid
diff --git a/customer_templates/OpenWallet/_completion_dashboard.html.liquid b/NP_Custom_Templates/customer_templates/OpenWallet/_completion_dashboard.html.liquid
similarity index 100%
rename from customer_templates/OpenWallet/_completion_dashboard.html.liquid
rename to NP_Custom_Templates/customer_templates/OpenWallet/_completion_dashboard.html.liquid
diff --git a/customer_templates/OpenWallet/_courses_index.html.liquid b/NP_Custom_Templates/customer_templates/OpenWallet/_courses_index.html.liquid
similarity index 100%
rename from customer_templates/OpenWallet/_courses_index.html.liquid
rename to NP_Custom_Templates/customer_templates/OpenWallet/_courses_index.html.liquid
diff --git a/customer_templates/OpenWallet/_enterprise_styles.html.liquid b/NP_Custom_Templates/customer_templates/OpenWallet/_enterprise_styles.html.liquid
similarity index 100%
rename from customer_templates/OpenWallet/_enterprise_styles.html.liquid
rename to NP_Custom_Templates/customer_templates/OpenWallet/_enterprise_styles.html.liquid
diff --git a/customer_templates/OpenWallet/_footer.html.liquid b/NP_Custom_Templates/customer_templates/OpenWallet/_footer.html.liquid
similarity index 100%
rename from customer_templates/OpenWallet/_footer.html.liquid
rename to NP_Custom_Templates/customer_templates/OpenWallet/_footer.html.liquid
diff --git a/customer_templates/OpenWallet/_head.html.liquid b/NP_Custom_Templates/customer_templates/OpenWallet/_head.html.liquid
similarity index 100%
rename from customer_templates/OpenWallet/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/OpenWallet/_head.html.liquid
diff --git a/customer_templates/OpenWallet/_header.html.liquid b/NP_Custom_Templates/customer_templates/OpenWallet/_header.html.liquid
similarity index 100%
rename from customer_templates/OpenWallet/_header.html.liquid
rename to NP_Custom_Templates/customer_templates/OpenWallet/_header.html.liquid
diff --git a/customer_templates/OpenWallet/_progress_circle.html.liquid b/NP_Custom_Templates/customer_templates/OpenWallet/_progress_circle.html.liquid
similarity index 100%
rename from customer_templates/OpenWallet/_progress_circle.html.liquid
rename to NP_Custom_Templates/customer_templates/OpenWallet/_progress_circle.html.liquid
diff --git a/customer_templates/OpenWallet/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/OpenWallet/dashboard.html.liquid
similarity index 100%
rename from customer_templates/OpenWallet/dashboard.html.liquid
rename to NP_Custom_Templates/customer_templates/OpenWallet/dashboard.html.liquid
diff --git a/customer_templates/OpenWallet/styles.css.liquid b/NP_Custom_Templates/customer_templates/OpenWallet/styles.css.liquid
similarity index 100%
rename from customer_templates/OpenWallet/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/OpenWallet/styles.css.liquid
diff --git a/customer_templates/Postman/.DS_Store b/NP_Custom_Templates/customer_templates/Postman/.DS_Store
similarity index 100%
rename from customer_templates/Postman/.DS_Store
rename to NP_Custom_Templates/customer_templates/Postman/.DS_Store
diff --git a/customer_templates/Postman/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/Postman/_cards_course.html.liquid
similarity index 100%
rename from customer_templates/Postman/_cards_course.html.liquid
rename to NP_Custom_Templates/customer_templates/Postman/_cards_course.html.liquid
diff --git a/customer_templates/Postman/_course_content_info.html.liquid b/NP_Custom_Templates/customer_templates/Postman/_course_content_info.html.liquid
similarity index 100%
rename from customer_templates/Postman/_course_content_info.html.liquid
rename to NP_Custom_Templates/customer_templates/Postman/_course_content_info.html.liquid
diff --git a/customer_templates/Postman/_courses_carousel.html.liquid b/NP_Custom_Templates/customer_templates/Postman/_courses_carousel.html.liquid
similarity index 100%
rename from customer_templates/Postman/_courses_carousel.html.liquid
rename to NP_Custom_Templates/customer_templates/Postman/_courses_carousel.html.liquid
diff --git a/customer_templates/Postman/_dropdown_courses.html.liquid b/NP_Custom_Templates/customer_templates/Postman/_dropdown_courses.html.liquid
similarity index 100%
rename from customer_templates/Postman/_dropdown_courses.html.liquid
rename to NP_Custom_Templates/customer_templates/Postman/_dropdown_courses.html.liquid
diff --git a/customer_templates/Postman/_footer.html.liquid b/NP_Custom_Templates/customer_templates/Postman/_footer.html.liquid
similarity index 100%
rename from customer_templates/Postman/_footer.html.liquid
rename to NP_Custom_Templates/customer_templates/Postman/_footer.html.liquid
diff --git a/customer_templates/Postman/_head.html.liquid b/NP_Custom_Templates/customer_templates/Postman/_head.html.liquid
similarity index 100%
rename from customer_templates/Postman/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/Postman/_head.html.liquid
diff --git a/customer_templates/Postman/_header.html.liquid b/NP_Custom_Templates/customer_templates/Postman/_header.html.liquid
similarity index 100%
rename from customer_templates/Postman/_header.html.liquid
rename to NP_Custom_Templates/customer_templates/Postman/_header.html.liquid
diff --git a/customer_templates/Postman/_resources.html.liquid b/NP_Custom_Templates/customer_templates/Postman/_resources.html.liquid
similarity index 100%
rename from customer_templates/Postman/_resources.html.liquid
rename to NP_Custom_Templates/customer_templates/Postman/_resources.html.liquid
diff --git a/customer_templates/Postman/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Postman/homepage.html.liquid
similarity index 100%
rename from customer_templates/Postman/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/Postman/homepage.html.liquid
diff --git a/customer_templates/Postman/styles.css.liquid b/NP_Custom_Templates/customer_templates/Postman/styles.css.liquid
similarity index 100%
rename from customer_templates/Postman/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/Postman/styles.css.liquid
diff --git a/customer_templates/Sandbox/_admin_dash.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/_admin_dash.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/_admin_dash.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/_admin_dash.html.liquid
diff --git a/customer_templates/Sandbox/_avg_progress.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/_avg_progress.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/_avg_progress.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/_avg_progress.html.liquid
diff --git a/customer_templates/Sandbox/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/_cards_course.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/_cards_course.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/_cards_course.html.liquid
diff --git a/customer_templates/Sandbox/_cards_learning_path.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/_cards_learning_path.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/_cards_learning_path.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/_cards_learning_path.html.liquid
diff --git a/customer_templates/Sandbox/_group_styles.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/_group_styles.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/_group_styles.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/_group_styles.html.liquid
diff --git a/customer_templates/Sandbox/_header.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/_header.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/_header.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/_header.html.liquid
diff --git a/customer_templates/Sandbox/_learning_path_course.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/_learning_path_course.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/_learning_path_course.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/_learning_path_course.html.liquid
diff --git a/customer_templates/Sandbox/_linegraph_progress.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/_linegraph_progress.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/_linegraph_progress.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/_linegraph_progress.html.liquid
diff --git a/customer_templates/Sandbox/_progress_circle.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/_progress_circle.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/_progress_circle.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/_progress_circle.html.liquid
diff --git a/customer_templates/Sandbox/_tests_math.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/_tests_math.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/_tests_math.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/_tests_math.html.liquid
diff --git a/customer_templates/Sandbox/_user_stats.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/_user_stats.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/_user_stats.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/_user_stats.html.liquid
diff --git a/customer_templates/Sandbox/admindash.py b/NP_Custom_Templates/customer_templates/Sandbox/admindash.py
similarity index 100%
rename from customer_templates/Sandbox/admindash.py
rename to NP_Custom_Templates/customer_templates/Sandbox/admindash.py
diff --git a/customer_templates/Sandbox/circletemplate.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/circletemplate.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/circletemplate.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/circletemplate.html.liquid
diff --git a/customer_templates/Sandbox/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Sandbox/homepage.html.liquid
similarity index 100%
rename from customer_templates/Sandbox/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/Sandbox/homepage.html.liquid
diff --git a/customer_templates/SourceScrub/_head.html.liquid b/NP_Custom_Templates/customer_templates/SourceScrub/_head.html.liquid
similarity index 100%
rename from customer_templates/SourceScrub/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/SourceScrub/_head.html.liquid
diff --git a/customer_templates/SourceScrub/styles.css.liquid b/NP_Custom_Templates/customer_templates/SourceScrub/styles.css.liquid
similarity index 100%
rename from customer_templates/SourceScrub/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/SourceScrub/styles.css.liquid
diff --git a/customer_templates/Volkswagen/_achievements.html.liquid b/NP_Custom_Templates/customer_templates/Volkswagen/_achievements.html.liquid
similarity index 100%
rename from customer_templates/Volkswagen/_achievements.html.liquid
rename to NP_Custom_Templates/customer_templates/Volkswagen/_achievements.html.liquid
diff --git a/customer_templates/Volkswagen/_audi_styles.html.liquid b/NP_Custom_Templates/customer_templates/Volkswagen/_audi_styles.html.liquid
similarity index 100%
rename from customer_templates/Volkswagen/_audi_styles.html.liquid
rename to NP_Custom_Templates/customer_templates/Volkswagen/_audi_styles.html.liquid
diff --git a/customer_templates/Volkswagen/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/Volkswagen/_cards_course.html.liquid
similarity index 100%
rename from customer_templates/Volkswagen/_cards_course.html.liquid
rename to NP_Custom_Templates/customer_templates/Volkswagen/_cards_course.html.liquid
diff --git a/customer_templates/Volkswagen/_completion_dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Volkswagen/_completion_dashboard.html.liquid
similarity index 100%
rename from customer_templates/Volkswagen/_completion_dashboard.html.liquid
rename to NP_Custom_Templates/customer_templates/Volkswagen/_completion_dashboard.html.liquid
diff --git a/customer_templates/Volkswagen/_courses_index.html.liquid b/NP_Custom_Templates/customer_templates/Volkswagen/_courses_index.html.liquid
similarity index 100%
rename from customer_templates/Volkswagen/_courses_index.html.liquid
rename to NP_Custom_Templates/customer_templates/Volkswagen/_courses_index.html.liquid
diff --git a/customer_templates/Volkswagen/_footer.html.liquid b/NP_Custom_Templates/customer_templates/Volkswagen/_footer.html.liquid
similarity index 100%
rename from customer_templates/Volkswagen/_footer.html.liquid
rename to NP_Custom_Templates/customer_templates/Volkswagen/_footer.html.liquid
diff --git a/customer_templates/Volkswagen/_head.html.liquid b/NP_Custom_Templates/customer_templates/Volkswagen/_head.html.liquid
similarity index 100%
rename from customer_templates/Volkswagen/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/Volkswagen/_head.html.liquid
diff --git a/customer_templates/Volkswagen/_header.html.liquid b/NP_Custom_Templates/customer_templates/Volkswagen/_header.html.liquid
similarity index 100%
rename from customer_templates/Volkswagen/_header.html.liquid
rename to NP_Custom_Templates/customer_templates/Volkswagen/_header.html.liquid
diff --git a/customer_templates/Volkswagen/_progress_circle.html.liquid b/NP_Custom_Templates/customer_templates/Volkswagen/_progress_circle.html.liquid
similarity index 100%
rename from customer_templates/Volkswagen/_progress_circle.html.liquid
rename to NP_Custom_Templates/customer_templates/Volkswagen/_progress_circle.html.liquid
diff --git a/customer_templates/Volkswagen/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Volkswagen/dashboard.html.liquid
similarity index 100%
rename from customer_templates/Volkswagen/dashboard.html.liquid
rename to NP_Custom_Templates/customer_templates/Volkswagen/dashboard.html.liquid
diff --git a/customer_templates/Volkswagen/styles.css.liquid b/NP_Custom_Templates/customer_templates/Volkswagen/styles.css.liquid
similarity index 100%
rename from customer_templates/Volkswagen/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/Volkswagen/styles.css.liquid
diff --git a/customer_templates/Walmart/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/_cards_course.html.liquid
similarity index 100%
rename from customer_templates/Walmart/_cards_course.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/_cards_course.html.liquid
diff --git a/customer_templates/Walmart/_cards_video.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/_cards_video.html.liquid
similarity index 100%
rename from customer_templates/Walmart/_cards_video.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/_cards_video.html.liquid
diff --git a/customer_templates/Walmart/_course_content_info.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/_course_content_info.html.liquid
similarity index 100%
rename from customer_templates/Walmart/_course_content_info.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/_course_content_info.html.liquid
diff --git a/customer_templates/Walmart/_courses_carousel.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/_courses_carousel.html.liquid
similarity index 100%
rename from customer_templates/Walmart/_courses_carousel.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/_courses_carousel.html.liquid
diff --git a/customer_templates/Walmart/_courses_catalog.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/_courses_catalog.html.liquid
similarity index 100%
rename from customer_templates/Walmart/_courses_catalog.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/_courses_catalog.html.liquid
diff --git a/customer_templates/Walmart/_dropdown_courses.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/_dropdown_courses.html.liquid
similarity index 100%
rename from customer_templates/Walmart/_dropdown_courses.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/_dropdown_courses.html.liquid
diff --git a/customer_templates/Walmart/_faq.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/_faq.html.liquid
similarity index 100%
rename from customer_templates/Walmart/_faq.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/_faq.html.liquid
diff --git a/customer_templates/Walmart/_footer.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/_footer.html.liquid
similarity index 100%
rename from customer_templates/Walmart/_footer.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/_footer.html.liquid
diff --git a/customer_templates/Walmart/_head.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/_head.html.liquid
similarity index 100%
rename from customer_templates/Walmart/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/_head.html.liquid
diff --git a/customer_templates/Walmart/_header.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/_header.html.liquid
similarity index 100%
rename from customer_templates/Walmart/_header.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/_header.html.liquid
diff --git a/customer_templates/Walmart/_resources.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/_resources.html.liquid
similarity index 100%
rename from customer_templates/Walmart/_resources.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/_resources.html.liquid
diff --git a/customer_templates/Walmart/catalog.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/catalog.html.liquid
similarity index 100%
rename from customer_templates/Walmart/catalog.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/catalog.html.liquid
diff --git a/customer_templates/Walmart/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/dashboard.html.liquid
similarity index 100%
rename from customer_templates/Walmart/dashboard.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/dashboard.html.liquid
diff --git a/customer_templates/Walmart/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/homepage.html.liquid
similarity index 100%
rename from customer_templates/Walmart/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/homepage.html.liquid
diff --git a/customer_templates/Walmart/learning_paths.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/learning_paths.html.liquid
similarity index 100%
rename from customer_templates/Walmart/learning_paths.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/learning_paths.html.liquid
diff --git a/customer_templates/Walmart/media.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/media.html.liquid
similarity index 100%
rename from customer_templates/Walmart/media.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/media.html.liquid
diff --git a/customer_templates/Walmart/news.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/news.html.liquid
similarity index 100%
rename from customer_templates/Walmart/news.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/news.html.liquid
diff --git a/customer_templates/Walmart/styles.css.liquid b/NP_Custom_Templates/customer_templates/Walmart/styles.css.liquid
similarity index 100%
rename from customer_templates/Walmart/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/styles.css.liquid
diff --git a/customer_templates/Walmart/training_events.html.liquid b/NP_Custom_Templates/customer_templates/Walmart/training_events.html.liquid
similarity index 100%
rename from customer_templates/Walmart/training_events.html.liquid
rename to NP_Custom_Templates/customer_templates/Walmart/training_events.html.liquid
diff --git a/customer_templates/Wound Care Advantage/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/Wound Care Advantage/_cards_course.html.liquid
similarity index 100%
rename from customer_templates/Wound Care Advantage/_cards_course.html.liquid
rename to NP_Custom_Templates/customer_templates/Wound Care Advantage/_cards_course.html.liquid
diff --git a/customer_templates/Wound Care Advantage/_course_card.html.liquid b/NP_Custom_Templates/customer_templates/Wound Care Advantage/_course_card.html.liquid
similarity index 100%
rename from customer_templates/Wound Care Advantage/_course_card.html.liquid
rename to NP_Custom_Templates/customer_templates/Wound Care Advantage/_course_card.html.liquid
diff --git a/customer_templates/Wound Care Advantage/_learning_paths.html.liquid b/NP_Custom_Templates/customer_templates/Wound Care Advantage/_learning_paths.html.liquid
similarity index 100%
rename from customer_templates/Wound Care Advantage/_learning_paths.html.liquid
rename to NP_Custom_Templates/customer_templates/Wound Care Advantage/_learning_paths.html.liquid
diff --git a/customer_templates/Wound Care Advantage/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Wound Care Advantage/homepage.html.liquid
similarity index 100%
rename from customer_templates/Wound Care Advantage/homepage.html.liquid
rename to NP_Custom_Templates/customer_templates/Wound Care Advantage/homepage.html.liquid
diff --git a/customer_templates/unqork/_head.html.liquid b/NP_Custom_Templates/customer_templates/unqork/_head.html.liquid
similarity index 100%
rename from customer_templates/unqork/_head.html.liquid
rename to NP_Custom_Templates/customer_templates/unqork/_head.html.liquid
diff --git a/customer_templates/unqork/styles.css.liquid b/NP_Custom_Templates/customer_templates/unqork/styles.css.liquid
similarity index 100%
rename from customer_templates/unqork/styles.css.liquid
rename to NP_Custom_Templates/customer_templates/unqork/styles.css.liquid
diff --git a/old_templates/_catalog_filters.html.liquid b/NP_Custom_Templates/old_templates/_catalog_filters.html.liquid
similarity index 100%
rename from old_templates/_catalog_filters.html.liquid
rename to NP_Custom_Templates/old_templates/_catalog_filters.html.liquid
diff --git a/old_templates/_catalog_search_form.html.liquid b/NP_Custom_Templates/old_templates/_catalog_search_form.html.liquid
similarity index 100%
rename from old_templates/_catalog_search_form.html.liquid
rename to NP_Custom_Templates/old_templates/_catalog_search_form.html.liquid
diff --git a/old_templates/_course.html.liquid b/NP_Custom_Templates/old_templates/_course.html.liquid
similarity index 100%
rename from old_templates/_course.html.liquid
rename to NP_Custom_Templates/old_templates/_course.html.liquid
diff --git a/old_templates/_course_version_outdated_alert.html.liquid b/NP_Custom_Templates/old_templates/_course_version_outdated_alert.html.liquid
similarity index 100%
rename from old_templates/_course_version_outdated_alert.html.liquid
rename to NP_Custom_Templates/old_templates/_course_version_outdated_alert.html.liquid
diff --git a/old_templates/_course_version_outdated_popup.html.liquid b/NP_Custom_Templates/old_templates/_course_version_outdated_popup.html.liquid
similarity index 100%
rename from old_templates/_course_version_outdated_popup.html.liquid
rename to NP_Custom_Templates/old_templates/_course_version_outdated_popup.html.liquid
diff --git a/old_templates/_events.html.liquid b/NP_Custom_Templates/old_templates/_events.html.liquid
similarity index 100%
rename from old_templates/_events.html.liquid
rename to NP_Custom_Templates/old_templates/_events.html.liquid
diff --git a/old_templates/_events_empty.html.liquid b/NP_Custom_Templates/old_templates/_events_empty.html.liquid
similarity index 100%
rename from old_templates/_events_empty.html.liquid
rename to NP_Custom_Templates/old_templates/_events_empty.html.liquid
diff --git a/old_templates/_events_list_item.html.liquid b/NP_Custom_Templates/old_templates/_events_list_item.html.liquid
similarity index 100%
rename from old_templates/_events_list_item.html.liquid
rename to NP_Custom_Templates/old_templates/_events_list_item.html.liquid
diff --git a/old_templates/_filters.html.liquid b/NP_Custom_Templates/old_templates/_filters.html.liquid
similarity index 100%
rename from old_templates/_filters.html.liquid
rename to NP_Custom_Templates/old_templates/_filters.html.liquid
diff --git a/old_templates/_footer.html.liquid b/NP_Custom_Templates/old_templates/_footer.html.liquid
similarity index 100%
rename from old_templates/_footer.html.liquid
rename to NP_Custom_Templates/old_templates/_footer.html.liquid
diff --git a/old_templates/_head.html.liquid b/NP_Custom_Templates/old_templates/_head.html.liquid
similarity index 100%
rename from old_templates/_head.html.liquid
rename to NP_Custom_Templates/old_templates/_head.html.liquid
diff --git a/old_templates/_header.html.liquid b/NP_Custom_Templates/old_templates/_header.html.liquid
similarity index 100%
rename from old_templates/_header.html.liquid
rename to NP_Custom_Templates/old_templates/_header.html.liquid
diff --git a/old_templates/_learning_path.html.liquid b/NP_Custom_Templates/old_templates/_learning_path.html.liquid
similarity index 100%
rename from old_templates/_learning_path.html.liquid
rename to NP_Custom_Templates/old_templates/_learning_path.html.liquid
diff --git a/old_templates/_learning_path_filters.html.liquid b/NP_Custom_Templates/old_templates/_learning_path_filters.html.liquid
similarity index 100%
rename from old_templates/_learning_path_filters.html.liquid
rename to NP_Custom_Templates/old_templates/_learning_path_filters.html.liquid
diff --git a/old_templates/_my_content_header.html.liquid b/NP_Custom_Templates/old_templates/_my_content_header.html.liquid
similarity index 100%
rename from old_templates/_my_content_header.html.liquid
rename to NP_Custom_Templates/old_templates/_my_content_header.html.liquid
diff --git a/old_templates/_my_paths.html.liquid b/NP_Custom_Templates/old_templates/_my_paths.html.liquid
similarity index 100%
rename from old_templates/_my_paths.html.liquid
rename to NP_Custom_Templates/old_templates/_my_paths.html.liquid
diff --git a/old_templates/_search_form.html.liquid b/NP_Custom_Templates/old_templates/_search_form.html.liquid
similarity index 100%
rename from old_templates/_search_form.html.liquid
rename to NP_Custom_Templates/old_templates/_search_form.html.liquid
diff --git a/old_templates/_training_event.html.liquid b/NP_Custom_Templates/old_templates/_training_event.html.liquid
similarity index 100%
rename from old_templates/_training_event.html.liquid
rename to NP_Custom_Templates/old_templates/_training_event.html.liquid
diff --git a/old_templates/_training_session.html.liquid b/NP_Custom_Templates/old_templates/_training_session.html.liquid
similarity index 100%
rename from old_templates/_training_session.html.liquid
rename to NP_Custom_Templates/old_templates/_training_session.html.liquid
diff --git a/old_templates/course_cover.html.liquid b/NP_Custom_Templates/old_templates/course_cover.html.liquid
similarity index 100%
rename from old_templates/course_cover.html.liquid
rename to NP_Custom_Templates/old_templates/course_cover.html.liquid
diff --git a/old_templates/course_details.html.liquid b/NP_Custom_Templates/old_templates/course_details.html.liquid
similarity index 100%
rename from old_templates/course_details.html.liquid
rename to NP_Custom_Templates/old_templates/course_details.html.liquid
diff --git a/old_templates/course_index.html.liquid b/NP_Custom_Templates/old_templates/course_index.html.liquid
similarity index 100%
rename from old_templates/course_index.html.liquid
rename to NP_Custom_Templates/old_templates/course_index.html.liquid
diff --git a/old_templates/custom_javascript.html.liquid b/NP_Custom_Templates/old_templates/custom_javascript.html.liquid
similarity index 100%
rename from old_templates/custom_javascript.html.liquid
rename to NP_Custom_Templates/old_templates/custom_javascript.html.liquid
diff --git a/old_templates/custom_javascript_v1.html.liquid b/NP_Custom_Templates/old_templates/custom_javascript_v1.html.liquid
similarity index 100%
rename from old_templates/custom_javascript_v1.html.liquid
rename to NP_Custom_Templates/old_templates/custom_javascript_v1.html.liquid
diff --git a/old_templates/custom_javascript_v2.html.liquid b/NP_Custom_Templates/old_templates/custom_javascript_v2.html.liquid
similarity index 100%
rename from old_templates/custom_javascript_v2.html.liquid
rename to NP_Custom_Templates/old_templates/custom_javascript_v2.html.liquid
diff --git a/old_templates/custom_javascript_v3.html.liquid b/NP_Custom_Templates/old_templates/custom_javascript_v3.html.liquid
similarity index 100%
rename from old_templates/custom_javascript_v3.html.liquid
rename to NP_Custom_Templates/old_templates/custom_javascript_v3.html.liquid
diff --git a/old_templates/custom_page.html.liquid b/NP_Custom_Templates/old_templates/custom_page.html.liquid
similarity index 100%
rename from old_templates/custom_page.html.liquid
rename to NP_Custom_Templates/old_templates/custom_page.html.liquid
diff --git a/old_templates/discover_events.html.liquid b/NP_Custom_Templates/old_templates/discover_events.html.liquid
similarity index 100%
rename from old_templates/discover_events.html.liquid
rename to NP_Custom_Templates/old_templates/discover_events.html.liquid
diff --git a/old_templates/homepage.html.liquid b/NP_Custom_Templates/old_templates/homepage.html.liquid
similarity index 100%
rename from old_templates/homepage.html.liquid
rename to NP_Custom_Templates/old_templates/homepage.html.liquid
diff --git a/old_templates/learning_path_cover.html.liquid b/NP_Custom_Templates/old_templates/learning_path_cover.html.liquid
similarity index 100%
rename from old_templates/learning_path_cover.html.liquid
rename to NP_Custom_Templates/old_templates/learning_path_cover.html.liquid
diff --git a/old_templates/learning_path_details.html.liquid b/NP_Custom_Templates/old_templates/learning_path_details.html.liquid
similarity index 100%
rename from old_templates/learning_path_details.html.liquid
rename to NP_Custom_Templates/old_templates/learning_path_details.html.liquid
diff --git a/old_templates/learning_paths_index.html.liquid b/NP_Custom_Templates/old_templates/learning_paths_index.html.liquid
similarity index 100%
rename from old_templates/learning_paths_index.html.liquid
rename to NP_Custom_Templates/old_templates/learning_paths_index.html.liquid
diff --git a/old_templates/login.html.liquid b/NP_Custom_Templates/old_templates/login.html.liquid
similarity index 100%
rename from old_templates/login.html.liquid
rename to NP_Custom_Templates/old_templates/login.html.liquid
diff --git a/old_templates/my_content.html.liquid b/NP_Custom_Templates/old_templates/my_content.html.liquid
similarity index 100%
rename from old_templates/my_content.html.liquid
rename to NP_Custom_Templates/old_templates/my_content.html.liquid
diff --git a/old_templates/not_found.html.liquid b/NP_Custom_Templates/old_templates/not_found.html.liquid
similarity index 100%
rename from old_templates/not_found.html.liquid
rename to NP_Custom_Templates/old_templates/not_found.html.liquid
diff --git a/old_templates/server_error.html.liquid b/NP_Custom_Templates/old_templates/server_error.html.liquid
similarity index 100%
rename from old_templates/server_error.html.liquid
rename to NP_Custom_Templates/old_templates/server_error.html.liquid
diff --git a/old_templates/styles.css.liquid b/NP_Custom_Templates/old_templates/styles.css.liquid
similarity index 100%
rename from old_templates/styles.css.liquid
rename to NP_Custom_Templates/old_templates/styles.css.liquid
diff --git a/old_templates/training_session_show.html.liquid b/NP_Custom_Templates/old_templates/training_session_show.html.liquid
similarity index 100%
rename from old_templates/training_session_show.html.liquid
rename to NP_Custom_Templates/old_templates/training_session_show.html.liquid
diff --git a/schoolkeep-templates-master/.gitignore b/NP_Custom_Templates/schoolkeep-templates-master/.gitignore
similarity index 100%
rename from schoolkeep-templates-master/.gitignore
rename to NP_Custom_Templates/schoolkeep-templates-master/.gitignore
diff --git a/schoolkeep-templates-master/README.md b/NP_Custom_Templates/schoolkeep-templates-master/README.md
similarity index 100%
rename from schoolkeep-templates-master/README.md
rename to NP_Custom_Templates/schoolkeep-templates-master/README.md
diff --git a/schoolkeep-templates-master/img/account_edit.png b/NP_Custom_Templates/schoolkeep-templates-master/img/account_edit.png
similarity index 100%
rename from schoolkeep-templates-master/img/account_edit.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/account_edit.png
diff --git a/schoolkeep-templates-master/img/atom.png b/NP_Custom_Templates/schoolkeep-templates-master/img/atom.png
similarity index 100%
rename from schoolkeep-templates-master/img/atom.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/atom.png
diff --git a/schoolkeep-templates-master/img/catalog_id_slug.png b/NP_Custom_Templates/schoolkeep-templates-master/img/catalog_id_slug.png
similarity index 100%
rename from schoolkeep-templates-master/img/catalog_id_slug.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/catalog_id_slug.png
diff --git a/schoolkeep-templates-master/img/catalog_screen.png b/NP_Custom_Templates/schoolkeep-templates-master/img/catalog_screen.png
similarity index 100%
rename from schoolkeep-templates-master/img/catalog_screen.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/catalog_screen.png
diff --git a/schoolkeep-templates-master/img/catalog_search_screen.png b/NP_Custom_Templates/schoolkeep-templates-master/img/catalog_search_screen.png
similarity index 100%
rename from schoolkeep-templates-master/img/catalog_search_screen.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/catalog_search_screen.png
diff --git a/schoolkeep-templates-master/img/course_cover_screen.png b/NP_Custom_Templates/schoolkeep-templates-master/img/course_cover_screen.png
similarity index 100%
rename from schoolkeep-templates-master/img/course_cover_screen.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/course_cover_screen.png
diff --git a/schoolkeep-templates-master/img/homepage.png b/NP_Custom_Templates/schoolkeep-templates-master/img/homepage.png
similarity index 100%
rename from schoolkeep-templates-master/img/homepage.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/homepage.png
diff --git a/schoolkeep-templates-master/img/learning_paths.png b/NP_Custom_Templates/schoolkeep-templates-master/img/learning_paths.png
similarity index 100%
rename from schoolkeep-templates-master/img/learning_paths.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/learning_paths.png
diff --git a/schoolkeep-templates-master/img/learning_paths_cover.png b/NP_Custom_Templates/schoolkeep-templates-master/img/learning_paths_cover.png
similarity index 100%
rename from schoolkeep-templates-master/img/learning_paths_cover.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/learning_paths_cover.png
diff --git a/schoolkeep-templates-master/img/learning_paths_id.png b/NP_Custom_Templates/schoolkeep-templates-master/img/learning_paths_id.png
similarity index 100%
rename from schoolkeep-templates-master/img/learning_paths_id.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/learning_paths_id.png
diff --git a/schoolkeep-templates-master/img/login.png b/NP_Custom_Templates/schoolkeep-templates-master/img/login.png
similarity index 100%
rename from schoolkeep-templates-master/img/login.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/login.png
diff --git a/schoolkeep-templates-master/img/lx_v2.png b/NP_Custom_Templates/schoolkeep-templates-master/img/lx_v2.png
similarity index 100%
rename from schoolkeep-templates-master/img/lx_v2.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/lx_v2.png
diff --git a/schoolkeep-templates-master/img/lx_v3.png b/NP_Custom_Templates/schoolkeep-templates-master/img/lx_v3.png
similarity index 100%
rename from schoolkeep-templates-master/img/lx_v3.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/lx_v3.png
diff --git a/schoolkeep-templates-master/img/my_dashboard.png b/NP_Custom_Templates/schoolkeep-templates-master/img/my_dashboard.png
similarity index 100%
rename from schoolkeep-templates-master/img/my_dashboard.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/my_dashboard.png
diff --git a/schoolkeep-templates-master/img/northpass_emblem.svg b/NP_Custom_Templates/schoolkeep-templates-master/img/northpass_emblem.svg
similarity index 100%
rename from schoolkeep-templates-master/img/northpass_emblem.svg
rename to NP_Custom_Templates/schoolkeep-templates-master/img/northpass_emblem.svg
diff --git a/schoolkeep-templates-master/img/placeholder.png b/NP_Custom_Templates/schoolkeep-templates-master/img/placeholder.png
similarity index 100%
rename from schoolkeep-templates-master/img/placeholder.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/placeholder.png
diff --git a/schoolkeep-templates-master/img/school_website_styling.png b/NP_Custom_Templates/schoolkeep-templates-master/img/school_website_styling.png
similarity index 100%
rename from schoolkeep-templates-master/img/school_website_styling.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/school_website_styling.png
diff --git a/schoolkeep-templates-master/img/server_error.png b/NP_Custom_Templates/schoolkeep-templates-master/img/server_error.png
similarity index 100%
rename from schoolkeep-templates-master/img/server_error.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/server_error.png
diff --git a/schoolkeep-templates-master/img/sublime.png b/NP_Custom_Templates/schoolkeep-templates-master/img/sublime.png
similarity index 100%
rename from schoolkeep-templates-master/img/sublime.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/sublime.png
diff --git a/schoolkeep-templates-master/img/training_events.png b/NP_Custom_Templates/schoolkeep-templates-master/img/training_events.png
similarity index 100%
rename from schoolkeep-templates-master/img/training_events.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/training_events.png
diff --git a/schoolkeep-templates-master/img/training_events_id.png b/NP_Custom_Templates/schoolkeep-templates-master/img/training_events_id.png
similarity index 100%
rename from schoolkeep-templates-master/img/training_events_id.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/training_events_id.png
diff --git a/schoolkeep-templates-master/img/vscode.png b/NP_Custom_Templates/schoolkeep-templates-master/img/vscode.png
similarity index 100%
rename from schoolkeep-templates-master/img/vscode.png
rename to NP_Custom_Templates/schoolkeep-templates-master/img/vscode.png
diff --git a/templates.code-workspace b/NP_Custom_Templates/templates.code-workspace
similarity index 100%
rename from templates.code-workspace
rename to NP_Custom_Templates/templates.code-workspace
diff --git a/templates.zip b/NP_Custom_Templates/templates.zip
similarity index 100%
rename from templates.zip
rename to NP_Custom_Templates/templates.zip
diff --git a/templates/.DS_Store b/NP_Custom_Templates/templates/.DS_Store
similarity index 100%
rename from templates/.DS_Store
rename to NP_Custom_Templates/templates/.DS_Store
diff --git a/templates/_account_avatar.html.liquid b/NP_Custom_Templates/templates/_account_avatar.html.liquid
similarity index 100%
rename from templates/_account_avatar.html.liquid
rename to NP_Custom_Templates/templates/_account_avatar.html.liquid
diff --git a/templates/_account_desktop_view.html.liquid b/NP_Custom_Templates/templates/_account_desktop_view.html.liquid
similarity index 100%
rename from templates/_account_desktop_view.html.liquid
rename to NP_Custom_Templates/templates/_account_desktop_view.html.liquid
diff --git a/templates/_account_form.html.liquid b/NP_Custom_Templates/templates/_account_form.html.liquid
similarity index 100%
rename from templates/_account_form.html.liquid
rename to NP_Custom_Templates/templates/_account_form.html.liquid
diff --git a/templates/_account_mobile_view.html.liquid b/NP_Custom_Templates/templates/_account_mobile_view.html.liquid
similarity index 100%
rename from templates/_account_mobile_view.html.liquid
rename to NP_Custom_Templates/templates/_account_mobile_view.html.liquid
diff --git a/templates/_cards_course.html.liquid b/NP_Custom_Templates/templates/_cards_course.html.liquid
similarity index 100%
rename from templates/_cards_course.html.liquid
rename to NP_Custom_Templates/templates/_cards_course.html.liquid
diff --git a/templates/_cards_learning_path.html.liquid b/NP_Custom_Templates/templates/_cards_learning_path.html.liquid
similarity index 100%
rename from templates/_cards_learning_path.html.liquid
rename to NP_Custom_Templates/templates/_cards_learning_path.html.liquid
diff --git a/templates/_cards_training_event.html.liquid b/NP_Custom_Templates/templates/_cards_training_event.html.liquid
similarity index 100%
rename from templates/_cards_training_event.html.liquid
rename to NP_Custom_Templates/templates/_cards_training_event.html.liquid
diff --git a/templates/_course_activity_locked.html.liquid b/NP_Custom_Templates/templates/_course_activity_locked.html.liquid
similarity index 100%
rename from templates/_course_activity_locked.html.liquid
rename to NP_Custom_Templates/templates/_course_activity_locked.html.liquid
diff --git a/templates/_course_activity_unlocked.html.liquid b/NP_Custom_Templates/templates/_course_activity_unlocked.html.liquid
similarity index 100%
rename from templates/_course_activity_unlocked.html.liquid
rename to NP_Custom_Templates/templates/_course_activity_unlocked.html.liquid
diff --git a/templates/_course_card.html.liquid b/NP_Custom_Templates/templates/_course_card.html.liquid
similarity index 100%
rename from templates/_course_card.html.liquid
rename to NP_Custom_Templates/templates/_course_card.html.liquid
diff --git a/templates/_course_categories.html.liquid b/NP_Custom_Templates/templates/_course_categories.html.liquid
similarity index 100%
rename from templates/_course_categories.html.liquid
rename to NP_Custom_Templates/templates/_course_categories.html.liquid
diff --git a/templates/_course_description.html.liquid b/NP_Custom_Templates/templates/_course_description.html.liquid
similarity index 100%
rename from templates/_course_description.html.liquid
rename to NP_Custom_Templates/templates/_course_description.html.liquid
diff --git a/templates/_course_desktop_view.html.liquid b/NP_Custom_Templates/templates/_course_desktop_view.html.liquid
similarity index 100%
rename from templates/_course_desktop_view.html.liquid
rename to NP_Custom_Templates/templates/_course_desktop_view.html.liquid
diff --git a/templates/_course_events.html.liquid b/NP_Custom_Templates/templates/_course_events.html.liquid
similarity index 100%
rename from templates/_course_events.html.liquid
rename to NP_Custom_Templates/templates/_course_events.html.liquid
diff --git a/templates/_course_header.html.liquid b/NP_Custom_Templates/templates/_course_header.html.liquid
similarity index 100%
rename from templates/_course_header.html.liquid
rename to NP_Custom_Templates/templates/_course_header.html.liquid
diff --git a/templates/_course_instructors.html.liquid b/NP_Custom_Templates/templates/_course_instructors.html.liquid
similarity index 100%
rename from templates/_course_instructors.html.liquid
rename to NP_Custom_Templates/templates/_course_instructors.html.liquid
diff --git a/templates/_course_mobile_view.html.liquid b/NP_Custom_Templates/templates/_course_mobile_view.html.liquid
similarity index 100%
rename from templates/_course_mobile_view.html.liquid
rename to NP_Custom_Templates/templates/_course_mobile_view.html.liquid
diff --git a/templates/_course_outline.html.liquid b/NP_Custom_Templates/templates/_course_outline.html.liquid
similarity index 100%
rename from templates/_course_outline.html.liquid
rename to NP_Custom_Templates/templates/_course_outline.html.liquid
diff --git a/templates/_course_progress_and_cta.html.liquid b/NP_Custom_Templates/templates/_course_progress_and_cta.html.liquid
similarity index 100%
rename from templates/_course_progress_and_cta.html.liquid
rename to NP_Custom_Templates/templates/_course_progress_and_cta.html.liquid
diff --git a/templates/_courses_catalog.html.liquid b/NP_Custom_Templates/templates/_courses_catalog.html.liquid
similarity index 100%
rename from templates/_courses_catalog.html.liquid
rename to NP_Custom_Templates/templates/_courses_catalog.html.liquid
diff --git a/templates/_courses_index.html.liquid b/NP_Custom_Templates/templates/_courses_index.html.liquid
similarity index 100%
rename from templates/_courses_index.html.liquid
rename to NP_Custom_Templates/templates/_courses_index.html.liquid
diff --git a/templates/_courses_zero_state.html.liquid b/NP_Custom_Templates/templates/_courses_zero_state.html.liquid
similarity index 100%
rename from templates/_courses_zero_state.html.liquid
rename to NP_Custom_Templates/templates/_courses_zero_state.html.liquid
diff --git a/templates/_filter_checkbox.html.liquid b/NP_Custom_Templates/templates/_filter_checkbox.html.liquid
similarity index 100%
rename from templates/_filter_checkbox.html.liquid
rename to NP_Custom_Templates/templates/_filter_checkbox.html.liquid
diff --git a/templates/_filter_dropdown.html.liquid b/NP_Custom_Templates/templates/_filter_dropdown.html.liquid
similarity index 100%
rename from templates/_filter_dropdown.html.liquid
rename to NP_Custom_Templates/templates/_filter_dropdown.html.liquid
diff --git a/templates/_filter_select.html.liquid b/NP_Custom_Templates/templates/_filter_select.html.liquid
similarity index 100%
rename from templates/_filter_select.html.liquid
rename to NP_Custom_Templates/templates/_filter_select.html.liquid
diff --git a/templates/_footer.html.liquid b/NP_Custom_Templates/templates/_footer.html.liquid
similarity index 100%
rename from templates/_footer.html.liquid
rename to NP_Custom_Templates/templates/_footer.html.liquid
diff --git a/templates/_head.html.liquid b/NP_Custom_Templates/templates/_head.html.liquid
similarity index 100%
rename from templates/_head.html.liquid
rename to NP_Custom_Templates/templates/_head.html.liquid
diff --git a/templates/_header.html.liquid b/NP_Custom_Templates/templates/_header.html.liquid
similarity index 100%
rename from templates/_header.html.liquid
rename to NP_Custom_Templates/templates/_header.html.liquid
diff --git a/templates/_header_minimal.html.liquid b/NP_Custom_Templates/templates/_header_minimal.html.liquid
similarity index 100%
rename from templates/_header_minimal.html.liquid
rename to NP_Custom_Templates/templates/_header_minimal.html.liquid
diff --git a/templates/_learning_path_course.html.liquid b/NP_Custom_Templates/templates/_learning_path_course.html.liquid
similarity index 100%
rename from templates/_learning_path_course.html.liquid
rename to NP_Custom_Templates/templates/_learning_path_course.html.liquid
diff --git a/templates/_learning_path_description.html.liquid b/NP_Custom_Templates/templates/_learning_path_description.html.liquid
similarity index 100%
rename from templates/_learning_path_description.html.liquid
rename to NP_Custom_Templates/templates/_learning_path_description.html.liquid
diff --git a/templates/_learning_path_desktop_view.html.liquid b/NP_Custom_Templates/templates/_learning_path_desktop_view.html.liquid
similarity index 100%
rename from templates/_learning_path_desktop_view.html.liquid
rename to NP_Custom_Templates/templates/_learning_path_desktop_view.html.liquid
diff --git a/templates/_learning_path_instructors.html.liquid b/NP_Custom_Templates/templates/_learning_path_instructors.html.liquid
similarity index 100%
rename from templates/_learning_path_instructors.html.liquid
rename to NP_Custom_Templates/templates/_learning_path_instructors.html.liquid
diff --git a/templates/_learning_path_mobile_view.html.liquid b/NP_Custom_Templates/templates/_learning_path_mobile_view.html.liquid
similarity index 100%
rename from templates/_learning_path_mobile_view.html.liquid
rename to NP_Custom_Templates/templates/_learning_path_mobile_view.html.liquid
diff --git a/templates/_learning_path_outline.html.liquid b/NP_Custom_Templates/templates/_learning_path_outline.html.liquid
similarity index 100%
rename from templates/_learning_path_outline.html.liquid
rename to NP_Custom_Templates/templates/_learning_path_outline.html.liquid
diff --git a/templates/_learning_path_progress_and_cta.html.liquid b/NP_Custom_Templates/templates/_learning_path_progress_and_cta.html.liquid
similarity index 100%
rename from templates/_learning_path_progress_and_cta.html.liquid
rename to NP_Custom_Templates/templates/_learning_path_progress_and_cta.html.liquid
diff --git a/templates/_learning_path_training_session.html.liquid b/NP_Custom_Templates/templates/_learning_path_training_session.html.liquid
similarity index 100%
rename from templates/_learning_path_training_session.html.liquid
rename to NP_Custom_Templates/templates/_learning_path_training_session.html.liquid
diff --git a/templates/_learning_paths_index.html.liquid b/NP_Custom_Templates/templates/_learning_paths_index.html.liquid
similarity index 100%
rename from templates/_learning_paths_index.html.liquid
rename to NP_Custom_Templates/templates/_learning_paths_index.html.liquid
diff --git a/templates/_messages.html.liquid b/NP_Custom_Templates/templates/_messages.html.liquid
similarity index 100%
rename from templates/_messages.html.liquid
rename to NP_Custom_Templates/templates/_messages.html.liquid
diff --git a/templates/_search_result.html.liquid b/NP_Custom_Templates/templates/_search_result.html.liquid
similarity index 100%
rename from templates/_search_result.html.liquid
rename to NP_Custom_Templates/templates/_search_result.html.liquid
diff --git a/templates/_search_zero_state.html.liquid b/NP_Custom_Templates/templates/_search_zero_state.html.liquid
similarity index 100%
rename from templates/_search_zero_state.html.liquid
rename to NP_Custom_Templates/templates/_search_zero_state.html.liquid
diff --git a/templates/_sub_navigation.html.liquid b/NP_Custom_Templates/templates/_sub_navigation.html.liquid
similarity index 100%
rename from templates/_sub_navigation.html.liquid
rename to NP_Custom_Templates/templates/_sub_navigation.html.liquid
diff --git a/templates/_training_events_dashboard.html.liquid b/NP_Custom_Templates/templates/_training_events_dashboard.html.liquid
similarity index 100%
rename from templates/_training_events_dashboard.html.liquid
rename to NP_Custom_Templates/templates/_training_events_dashboard.html.liquid
diff --git a/templates/_training_events_filter.html.liquid b/NP_Custom_Templates/templates/_training_events_filter.html.liquid
similarity index 100%
rename from templates/_training_events_filter.html.liquid
rename to NP_Custom_Templates/templates/_training_events_filter.html.liquid
diff --git a/templates/_training_events_index.html.liquid b/NP_Custom_Templates/templates/_training_events_index.html.liquid
similarity index 100%
rename from templates/_training_events_index.html.liquid
rename to NP_Custom_Templates/templates/_training_events_index.html.liquid
diff --git a/templates/_training_events_zero_state.html.liquid b/NP_Custom_Templates/templates/_training_events_zero_state.html.liquid
similarity index 100%
rename from templates/_training_events_zero_state.html.liquid
rename to NP_Custom_Templates/templates/_training_events_zero_state.html.liquid
diff --git a/templates/_training_session_cta.html.liquid b/NP_Custom_Templates/templates/_training_session_cta.html.liquid
similarity index 100%
rename from templates/_training_session_cta.html.liquid
rename to NP_Custom_Templates/templates/_training_session_cta.html.liquid
diff --git a/templates/_training_session_date.html.liquid b/NP_Custom_Templates/templates/_training_session_date.html.liquid
similarity index 100%
rename from templates/_training_session_date.html.liquid
rename to NP_Custom_Templates/templates/_training_session_date.html.liquid
diff --git a/templates/_training_session_description.html.liquid b/NP_Custom_Templates/templates/_training_session_description.html.liquid
similarity index 100%
rename from templates/_training_session_description.html.liquid
rename to NP_Custom_Templates/templates/_training_session_description.html.liquid
diff --git a/templates/_training_session_desktop_view.html.liquid b/NP_Custom_Templates/templates/_training_session_desktop_view.html.liquid
similarity index 100%
rename from templates/_training_session_desktop_view.html.liquid
rename to NP_Custom_Templates/templates/_training_session_desktop_view.html.liquid
diff --git a/templates/_training_session_details.html.liquid b/NP_Custom_Templates/templates/_training_session_details.html.liquid
similarity index 100%
rename from templates/_training_session_details.html.liquid
rename to NP_Custom_Templates/templates/_training_session_details.html.liquid
diff --git a/templates/_training_session_header.html.liquid b/NP_Custom_Templates/templates/_training_session_header.html.liquid
similarity index 100%
rename from templates/_training_session_header.html.liquid
rename to NP_Custom_Templates/templates/_training_session_header.html.liquid
diff --git a/templates/_training_session_mobile_view.html.liquid b/NP_Custom_Templates/templates/_training_session_mobile_view.html.liquid
similarity index 100%
rename from templates/_training_session_mobile_view.html.liquid
rename to NP_Custom_Templates/templates/_training_session_mobile_view.html.liquid
diff --git a/templates/_training_session_more_sessions.html.liquid b/NP_Custom_Templates/templates/_training_session_more_sessions.html.liquid
similarity index 100%
rename from templates/_training_session_more_sessions.html.liquid
rename to NP_Custom_Templates/templates/_training_session_more_sessions.html.liquid
diff --git a/templates/_training_session_tile.html.liquid b/NP_Custom_Templates/templates/_training_session_tile.html.liquid
similarity index 100%
rename from templates/_training_session_tile.html.liquid
rename to NP_Custom_Templates/templates/_training_session_tile.html.liquid
diff --git a/templates/account.html.liquid b/NP_Custom_Templates/templates/account.html.liquid
similarity index 100%
rename from templates/account.html.liquid
rename to NP_Custom_Templates/templates/account.html.liquid
diff --git a/templates/auth_url_email.html.liquid b/NP_Custom_Templates/templates/auth_url_email.html.liquid
similarity index 100%
rename from templates/auth_url_email.html.liquid
rename to NP_Custom_Templates/templates/auth_url_email.html.liquid
diff --git a/templates/auth_url_employee.html.liquid b/NP_Custom_Templates/templates/auth_url_employee.html.liquid
similarity index 100%
rename from templates/auth_url_employee.html.liquid
rename to NP_Custom_Templates/templates/auth_url_employee.html.liquid
diff --git a/templates/auth_url_phone_number.html.liquid b/NP_Custom_Templates/templates/auth_url_phone_number.html.liquid
similarity index 100%
rename from templates/auth_url_phone_number.html.liquid
rename to NP_Custom_Templates/templates/auth_url_phone_number.html.liquid
diff --git a/templates/auth_url_terms.html.liquid b/NP_Custom_Templates/templates/auth_url_terms.html.liquid
similarity index 100%
rename from templates/auth_url_terms.html.liquid
rename to NP_Custom_Templates/templates/auth_url_terms.html.liquid
diff --git a/templates/catalog.html.liquid b/NP_Custom_Templates/templates/catalog.html.liquid
similarity index 100%
rename from templates/catalog.html.liquid
rename to NP_Custom_Templates/templates/catalog.html.liquid
diff --git a/templates/course.html.liquid b/NP_Custom_Templates/templates/course.html.liquid
similarity index 100%
rename from templates/course.html.liquid
rename to NP_Custom_Templates/templates/course.html.liquid
diff --git a/templates/courses.html.liquid b/NP_Custom_Templates/templates/courses.html.liquid
similarity index 100%
rename from templates/courses.html.liquid
rename to NP_Custom_Templates/templates/courses.html.liquid
diff --git a/templates/dashboard.html.liquid b/NP_Custom_Templates/templates/dashboard.html.liquid
similarity index 100%
rename from templates/dashboard.html.liquid
rename to NP_Custom_Templates/templates/dashboard.html.liquid
diff --git a/templates/forgot_password.html.liquid b/NP_Custom_Templates/templates/forgot_password.html.liquid
similarity index 100%
rename from templates/forgot_password.html.liquid
rename to NP_Custom_Templates/templates/forgot_password.html.liquid
diff --git a/templates/homepage.html.liquid b/NP_Custom_Templates/templates/homepage.html.liquid
similarity index 100%
rename from templates/homepage.html.liquid
rename to NP_Custom_Templates/templates/homepage.html.liquid
diff --git a/templates/learning_path.html.liquid b/NP_Custom_Templates/templates/learning_path.html.liquid
similarity index 100%
rename from templates/learning_path.html.liquid
rename to NP_Custom_Templates/templates/learning_path.html.liquid
diff --git a/templates/learning_paths.html.liquid b/NP_Custom_Templates/templates/learning_paths.html.liquid
similarity index 100%
rename from templates/learning_paths.html.liquid
rename to NP_Custom_Templates/templates/learning_paths.html.liquid
diff --git a/templates/login.html.liquid b/NP_Custom_Templates/templates/login.html.liquid
similarity index 100%
rename from templates/login.html.liquid
rename to NP_Custom_Templates/templates/login.html.liquid
diff --git a/templates/master.html.liquid b/NP_Custom_Templates/templates/master.html.liquid
similarity index 100%
rename from templates/master.html.liquid
rename to NP_Custom_Templates/templates/master.html.liquid
diff --git a/templates/reset_password.html.liquid b/NP_Custom_Templates/templates/reset_password.html.liquid
similarity index 100%
rename from templates/reset_password.html.liquid
rename to NP_Custom_Templates/templates/reset_password.html.liquid
diff --git a/templates/search.html.liquid b/NP_Custom_Templates/templates/search.html.liquid
similarity index 100%
rename from templates/search.html.liquid
rename to NP_Custom_Templates/templates/search.html.liquid
diff --git a/templates/sign_up.html.liquid b/NP_Custom_Templates/templates/sign_up.html.liquid
similarity index 100%
rename from templates/sign_up.html.liquid
rename to NP_Custom_Templates/templates/sign_up.html.liquid
diff --git a/templates/standard-css.css b/NP_Custom_Templates/templates/standard-css.css
similarity index 100%
rename from templates/standard-css.css
rename to NP_Custom_Templates/templates/standard-css.css
diff --git a/templates/styles.css.liquid b/NP_Custom_Templates/templates/styles.css.liquid
similarity index 100%
rename from templates/styles.css.liquid
rename to NP_Custom_Templates/templates/styles.css.liquid
diff --git a/templates/training_events.html.liquid b/NP_Custom_Templates/templates/training_events.html.liquid
similarity index 100%
rename from templates/training_events.html.liquid
rename to NP_Custom_Templates/templates/training_events.html.liquid
diff --git a/templates/training_session.html.liquid b/NP_Custom_Templates/templates/training_session.html.liquid
similarity index 100%
rename from templates/training_session.html.liquid
rename to NP_Custom_Templates/templates/training_session.html.liquid
diff --git a/upload.sh b/NP_Custom_Templates/upload.sh
similarity index 100%
rename from upload.sh
rename to NP_Custom_Templates/upload.sh
diff --git a/NP_Startpage b/NP_Startpage
new file mode 160000
index 00000000..e5e7fe74
--- /dev/null
+++ b/NP_Startpage
@@ -0,0 +1 @@
+Subproject commit e5e7fe74d3b5e37c0f63d1b4629e0228a08e4137
diff --git a/customer_templates/ChildVenturesCA/styles.css.liquid b/customer_templates/ChildVenturesCA/styles.css.liquid
deleted file mode 100644
index 3a2742ae..00000000
--- a/customer_templates/ChildVenturesCA/styles.css.liquid
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file