diff --git a/Custom_Templates/customer_templates/.DS_Store b/Custom_Templates/customer_templates/.DS_Store index 0385b29b..0a63732d 100644 Binary files a/Custom_Templates/customer_templates/.DS_Store and b/Custom_Templates/customer_templates/.DS_Store differ diff --git a/Custom_Templates/customer_templates/Artera_internal/_cards_course.html.liquid b/Custom_Templates/customer_templates/Artera_internal/_cards_course.html.liquid index 3c0d70ac..0511c1e9 100644 --- a/Custom_Templates/customer_templates/Artera_internal/_cards_course.html.liquid +++ b/Custom_Templates/customer_templates/Artera_internal/_cards_course.html.liquid @@ -25,9 +25,3 @@ - - diff --git a/Custom_Templates/customer_templates/Artera_internal/styles.css.liquid b/Custom_Templates/customer_templates/Artera_internal/styles.css.liquid index 448850d3..cbb4944b 100644 --- a/Custom_Templates/customer_templates/Artera_internal/styles.css.liquid +++ b/Custom_Templates/customer_templates/Artera_internal/styles.css.liquid @@ -31,14 +31,14 @@ body, .np-main { } .np-alert { - margin: 20px 0; + margin: 20px 0; } /* Course Cards */ .course-card { cursor: pointer; - background-color: #f5f2ff; + background-color: #dbd2f7; border-radius: 30px; box-shadow: none; padding: 24px 24px 44px; diff --git a/Custom_Templates/customer_templates/Mizuno/.DS_Store b/Custom_Templates/customer_templates/Mizuno Golf/.DS_Store similarity index 100% rename from Custom_Templates/customer_templates/Mizuno/.DS_Store rename to Custom_Templates/customer_templates/Mizuno Golf/.DS_Store diff --git a/Custom_Templates/customer_templates/Mizuno/_cards_course.html.liquid b/Custom_Templates/customer_templates/Mizuno Golf/_cards_course.html.liquid similarity index 96% rename from Custom_Templates/customer_templates/Mizuno/_cards_course.html.liquid rename to Custom_Templates/customer_templates/Mizuno Golf/_cards_course.html.liquid index 2d954fff..28538808 100644 --- a/Custom_Templates/customer_templates/Mizuno/_cards_course.html.liquid +++ b/Custom_Templates/customer_templates/Mizuno Golf/_cards_course.html.liquid @@ -17,7 +17,6 @@
STAND OUT
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Nunc sed velit dignissim sodales ut. Nisl condimentum id venenatis a condimentum vitae sapien pellentesque habitant. +MIZUNO CERTIFICATIONS
+ Nisl condimentum id venenatis a condimentum vitae sapien pellentesque habitant. Leo duis ut diam quam nulla. Cras sed felis eget velit aliquet sagittis. At risus viverra adipiscing at in. Quis enim lobortis scelerisque fermentum dui faucibus in. +TRENDING COURSES
+ Leo duis ut diam quam nulla. Cras sed felis eget velit aliquet sagittis. At risus viverra adipiscing at in. Quis enim lobortis scelerisque fermentum dui faucibus in. Pulvinar neque laoreet suspendisse interdum consectetur libero. Dui ut ornare lectus sit amet est placerat. Morbi non arcu risus quis varius quam quisque id. +
+
+
+
+ \n",
- "# Create a list of all the unique words in the School Name column\n",
- "words = pages['School Name'].str.split().explode().unique()\n",
- "\n",
- "# Create a new column in the dataframe with the words from the School Name column\n",
- "pages['words'] = pages['School Name'].str.split().explode()\n",
- "\n",
- "# Create a dictionary mapping each word to its corresponding row index\n",
- "word_index_map = {word: pages[pages['words'] == word].index for word in words}\n",
- "\n",
- "# Iterate through the dictionary and combine dataframes based on matching indexes\n",
- "for word, index in word_index_map.items():\n",
- " df1 = pages.loc[index]\n",
- " df2 = other_df.loc[other_df['Index'].str.contains(word)]\n",
- " combined_df = pd.concat([df1, df2], axis=1)\n",
- "\n",
- " \n",
- "