diff --git a/Custom_Templates/customer_templates/.DS_Store b/Custom_Templates/customer_templates/.DS_Store index 6c10a529..3197307c 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/Pipedrive Learn - Public/_account_avatar.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_account_avatar.html.liquid new file mode 100644 index 00000000..8fac055d --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_account_avatar.html.liquid @@ -0,0 +1,172 @@ +
+

+ Profile picture + + + + +

+
+ Photo helps personalize your account + + + + +
+
+ +default avatar +avatar + +
+
+ +
+ +
+ +
+ +
+
+ + + +
+ + Use default avatar + + + + + +
+
+ + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_account_deletion.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_account_deletion.html.liquid new file mode 100644 index 00000000..57d23b56 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_account_deletion.html.liquid @@ -0,0 +1,157 @@ +
+

+ Delete your account + + + + +

+
+ Your account will be permanently deleted and you will no longer be able to access any data or information associated with this account. This action cannot be undone. + + + + +
+
+ Delete my account + + + + +
+
+ +
+
+
+
+ + +
+ Delete + + + + +
+
+
+ Your account will be deleted shortly + + + + +
+
+ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_account_desktop_view.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_account_desktop_view.html.liquid new file mode 100644 index 00000000..62e99520 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_account_desktop_view.html.liquid @@ -0,0 +1,31 @@ +
+ + {% form_authenticity_token %} +
+
+

+ My profile + + + + +

+
+ +
+ {% include "account_avatar", version: "desktop" %} + {% include "account_deletion" %} +
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_account_form.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_account_form.html.liquid new file mode 100644 index 00000000..676184cb --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_account_form.html.liquid @@ -0,0 +1,168 @@ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +{% unless form.options.invite? %} +
+ + +
+ +
+ + +
+ +
+ + +
+{% endunless %} + +{% if form.options.invite? %} +
+ + +
+ + {% if form.terms_of_service_required? %} +
+ +
+ {% t .terms_of_service %} + + + + +
+
+ {% else %} +
+ + {% t .terms %} + + {% t .terms_link %} + + +
+ {% endif %} + + +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_course.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_course.html.liquid new file mode 100644 index 00000000..fee17282 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_course.html.liquid @@ -0,0 +1,75 @@ +{% assign activities_count = 0 %} +{% for section in course.sections %} + {% assign activities_count = activities_count | plus: section.activities.size %} +{% endfor %} +{% capture course_path %}{% route course, id: course.id %}{% endcapture %} +{% assign scaled_image_url = "" | append: course.image_url | replace: "resize=width:819,height:503", "resize=width:912,height:503" %} + +
+ + {% if course.ribbon and course.ribbon.size > 0 %} + {% assign course_ribbon_uppercase = course.ribbon | upcase %} +
+ {{ course.ribbon }} +
+ {% endif %} + Learn Pipedrive - {{ course.name }} +
+
+ {{ activities_count }} + {% if activities_count == 1 %} + lesson + + + + + {% else %} + lessons + + + + + {% endif %} + | + {% if course.properties.course_time != 'NULL' %} + {{ course.properties.course_time }} + {% endif %} +
+
+ {{ course.name }} +
+
+ {{ course.short_description }} +
+ +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_course_homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_course_homepage.html.liquid new file mode 100644 index 00000000..a65c9600 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_course_homepage.html.liquid @@ -0,0 +1,81 @@ +{% assign activities_count = 0 %} +{% for section in course.sections %} + {% assign activities_count = activities_count | plus: section.activities.size %} +{% endfor %} + + +
+ Learn Pipedrive - {{ course.name }} +
+ {% unless course.ribbon == "VIDEO" %} +
+ {{ activities_count }} + {% if activities_count == 1 %} + activity + + + + + {% else %} + activities + + + + + {% endif %} +
+ {% endunless %} +
+
+
+ {{ course.name }} +
+
+
+ {% if course.ribbon != "VIDEO" %} + {% if course.started? %} + Continue + + + + + {% else %} + Start + + + + + {% endif %} + {% else %} + Watch + + + + + {% endif %} +
+
+ +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_generic.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_generic.html.liquid new file mode 100644 index 00000000..93b9ae9e --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_generic.html.liquid @@ -0,0 +1,18 @@ +
+ + {{ card_alt_text }} +
+
+ {{ card_title }} +
+
+ {{ card_description }} +
+
+
+ {{ card_button_text }} +
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_video.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_video.html.liquid new file mode 100644 index 00000000..35b7ee99 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cards_video.html.liquid @@ -0,0 +1,42 @@ +{% assign activities_count = 0 %} +{% for section in course.sections %} + {% assign activities_count = activities_count | plus: section.activities.size %} +{% endfor %} +{% capture course_path %}{% route course, id: course.id %}{% endcapture %} +{% assign scaled_image_url = "" | append: course.image_url | replace: "resize=width:819,height:503", "resize=width:912,height:503" %} + +
+ + {% if course.properties.course_time != 'NULL' %} +
+ + + +
+ {{ course.properties.course_time }} +
+
+ {% endif %} + Learn Pipedrive - {{ course.name }} +
+
+ {{ course.name }} +
+
+ {{ course.short_description }} +
+ + +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_courses.html.liquid new file mode 100644 index 00000000..943621f7 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_courses.html.liquid @@ -0,0 +1,214 @@ +{% assign categories_uuids = "" %} +{% assign categories_names = "" %} +{% for course in courses.in_catalog %} + {% if course.categories.size > 0 and course.ribbon != "VIDEO" and course.properties.featured == false %} + {% assign course_categories_ids = course.categories | map: 'id' | join: "|||" %} + {% assign course_categories_names = course.categories | map: 'name' | join: "|||" %} + {% assign categories_uuids = categories_uuids | append: course_categories_ids | append: "|||" %} + {% assign categories_names = categories_names | append: course_categories_names | append: "|||" %} + {% endif %} +{% endfor %} +{% assign categories_uuids = categories_uuids | split: "|||" | uniq %} +{% assign categories_names = categories_names | split: "|||" | uniq %} + +
+ {% for x in (1..categories_uuids.size) %} + {% assign number_of_videos = 0 %} + {% assign y = x | minus: 1 %} + {% assign category_uuid = categories_uuids | slice: y %} +
+
+

+ {{ categories_names | slice: y }} +

+
+ + Show less + + + + + + + View all + + + + + +
+
+ +
+ {% for course in courses.in_catalog %} + {% assign course_categories = course.categories | map: 'id' %} + {% if course.ribbon != "VIDEO" and course.properties.featured == false %} + {% for cat in course_categories %} + {% if category_uuid contains cat %} + {% assign number_of_videos = number_of_videos | plus: 1 %} + {% include "cards_course" %} + {% endif %} + {% endfor %} + {% endif %} + {% endfor %} +
+
+ + {% if number_of_videos <= 3 %} + + {% endif %} + {% endfor %} +
+ +
+ {% include "catalog_filter", uuids: categories_uuids, names: categories_names %} + + {% unless any_course %} + + {% endunless %} +
+ + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_faq.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_faq.html.liquid new file mode 100644 index 00000000..83820dda --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_faq.html.liquid @@ -0,0 +1,121 @@ +
+

+ FAQ +

+
+
+
+
+ + +
+
+ What is a sales training program? + + + + +
+
+
+ A sales training program is a course – be it virtual, on-site or on-demand – designed to equip your salespeople with the skills to maximize revenue. Online sales training is convenient and has several advantages over in-person training. For example, it allows sales professionals to complete an e-learning program at their own pace. + + + + +
+
+ +
+
+
+ + +
+
+ What is a sales academy? + + + + +
+
+
+ A sales academy is a space featuring a range of courses and videos for training salespeople. These usually include tutorials to help foster stronger customer relationships, increase revenue and strengthen sales skills. The courses can be multi-part instructor-led training, self-study or more concise lessons that focus on particular aspects of the sales process. + + + + +
+
+ +
+
+
+ + +
+
+ What is the Pipedrive Academy? + + + + +
+
+
+ The Pipedrive Academy is where you’ll find courses, videos and tutorials to help sales professionals level up their sales skills. It features guides that’ll teach you how to get started with Pipedrive’s CRM, how to become an email marketing pro, how to build a successful sales pipeline and much more. + + + + +
+
+
+ +
+
+
+ + +
+
+ What company has the best sales training programs? + + + + +
+
+
+ The best sales training programs are those that suit your sales team the most. There are many things that contribute to a successful sales strategy. These include building strong customer relationships, making sure to follow up on time, running smart email marketing campaigns and maintaining a healthy sales pipeline. Pipedrive’s Academy doesn’t only guide users on its software – it helps salespeople acquire sales skills that can be applied to whichever tool they use. + + + + +
+
+ +
+
+
+ + +
+
+ How do I build a sales training program? + + + + +
+
+
+ There are endless resources available when it comes to training your sales team. Sure, you could trawl the internet looking for the right materials, or you could use one of the guides in the Pipedrive Academy. These courses are tailor-made to help you to achieve sales success, understand email marketing and build a successful sales pipeline. + + + + +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_filter.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_filter.html.liquid new file mode 100644 index 00000000..894dcec6 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_filter.html.liquid @@ -0,0 +1,69 @@ +{% if uuids.size > 0 %} +
+
+ All topics + + + + +
+ {% for x in (1..uuids.size) %} + {% assign y = x | minus: 1 %} +
+ {{ names | slice: y }} +
+ {% endfor %} +
+{% endif %} + + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_page_info.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_page_info.html.liquid new file mode 100644 index 00000000..d64d1b21 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_catalog_page_info.html.liquid @@ -0,0 +1,56 @@ +
+
+
+
+ Woman researching on the Learn Pipedrive Academy +
+
+

+ What you can find in the Pipedrive Academy: + + + + +

+
+ Pipedrive’s Academy is where you’ll find self-paced courses – including online training videos – to help sales professionals and marketers on your team learn and improve their marketing and sales skills. Courses in the academy range from quick, practical lessons that address specific issues your salespeople might encounter along the sales process to longer, multi-part e-learning tutorials that break down much larger topics – such as an introduction to email marketing – into smaller, bite-sized chunks – like how to organize sales data. + + + + +
+
+
+ +
+
+ Learn Pipedrive academy sales training benefits +
+
+

+ The benefits of sales training programs: + + + + +

+
+ + The benefits of sales training programs:
+ Without proper training, a sales team can struggle to close deals and miss potential revenue. The wrong sales strategy makes it difficult to yield results and sales professionals might pursue bad leads or waste time on unproductive tasks.
+ Sales training programs help sales teams hone in on their targets in various ways. Among other things, they:
+
    +
  • Empower sales reps to acquire top sales techniques they can use to engage with new target groups and close deals.
  • +
  • Allow businesses to improve and personalize their communication with prospects. Conducting warmer, less transactional sales conversations and customer relationships is likely to result in repeat business and improved customer retention rates.
  • +
  • Motivate your company’s sales force through consistent nurturing, leading to greater employee retention, morale and productivity.
  • +
+
+ + + + +
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cookie_banner.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cookie_banner.html.liquid new file mode 100644 index 00000000..6b3f5654 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_cookie_banner.html.liquid @@ -0,0 +1,383 @@ + + + + + + + +{% comment %} + +{% endcomment %} + +{% if current_person.signed_in? %} + +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_cover.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_cover.html.liquid new file mode 100644 index 00000000..715d1667 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_cover.html.liquid @@ -0,0 +1,30 @@ +{% if current_person.signed_in? and course.enrolled? %} + +{% else %} +
+ {% include "course_green_card" %} + {% if course.instructors and course.instructors.size > 0 %} + {% include "course_instructor_card" %} + {% endif %} + {% include "course_outline" %} + {% include "catalog_faq" %} + {% include "course_recommended_courses" %} + + {% unless current_person.signed_in? %} + {% assign banner_title = "How to get most out of Pipedrive?" %} + {% assign banner_text = "Welcome to Pipedrive Academy! Pipedrive Academy features CRM training videos and tutorials to help you level up your CRM and sales skills, from quick CRM courses to in-depth tutorials on specific features." %} + {% assign banner_button_text = "Start today" %} + {% assign banner_button_link = "#sso-widget" %} + {% include "green_banner_text_bg_image" %} + {% endunless %} +
+ + +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_green_card.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_green_card.html.liquid new file mode 100644 index 00000000..a0c0b8fc --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_green_card.html.liquid @@ -0,0 +1,196 @@ +
+
+ {% if course.promo_video_embed_url.size > 0 %} +
+ {{ course.promo_video_embed_url }} +
+ {% else %} + banner image + {% endif %} +
+ +

+ {{ course.name }} +

+
+ {{ course.full_description }} +
+ {% comment %} + Hiding it for now, when reimplementing we need to link it to open academy courses via custom property with enrollemnt link +
+ + + + + + + + + + + + +
+ Link was copied! + + + + +
+
+ {% endcomment %} +
+ {% if current_person.signed_in? %} + {% if course.enrolled? %} + + Continue + + + + + + {% else %} + + Start your course + + + + + + {% endif %} + {% else %} + + Register for free courses + + + + + + {% endif %} +
+
+
+
+ + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_instructor_card.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_instructor_card.html.liquid new file mode 100644 index 00000000..80e84942 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_instructor_card.html.liquid @@ -0,0 +1,79 @@ +{% assign instructor = course.instructors | first %} +
+

+ Your host for the course + + + + +

+
+
+ {{ instructor.name }} +
+
+

+ + + + {{ instructor.bio | strip_html }} +

+
+ {{ instructor.name }}, +
+
+ {{ instructor.title }} +
+
+
+
+ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_outline.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_outline.html.liquid new file mode 100644 index 00000000..a01413f1 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_outline.html.liquid @@ -0,0 +1,171 @@ +{% assign section_counter = 0 %} + +{% assign document_icon = '' %} +{% assign download_icon = '' %} +{% assign presentation_icon = '' %} +{% assign quiz_icon = '' %} +{% assign soundcloud_icon = '' %} +{% assign survey_icon = '' %} +{% assign video_icon = '' %} +{% assign webpage_icon = '' %} + +
+
+
+

+ List of lessons + + + + +

+
+ This course will show you how you can get started and how Pipedrive can greatly improve your sales results. What you will learn: +
+
+ {% assign section_counter = 0 %} + {% for section in course.sections %} + {% assign section_counter = section_counter | plus: 1 %} + {% assign section_name_splitted = section.name | split: "|||" %} + {% assign section_name = section_name_splitted | slice: 0 %} + {% assign section_description = section_name_splitted | slice: 1 %} +
+
+
+ {{ section_counter }}. {{ section_name }} +
+
+ + +
+
+
+ {{ section_description }} +
+
+ {% assign activities_counter = 0 %} + {% for activity in section.activities %} + {% assign activities_counter = activities_counter | plus: 1 %} +
+
+ {{ activities_counter }}. {{ activity.title }} +
+
+ {% case activity.type %} + {% when 'presentation' %} + {{ presentation_icon }} + {% when 'webpage' %} + {{ webpage_icon }} + {% when 'video' %} + {{ video_icon }} + {% when 'document' %} + {{ document_icon }} + {% when 'quiz' %} + {{ quiz_icon }} + {% when 'survey' %} + {{ survey_icon }} + {% when 'soundcloud' %} + {{ soundcloud_icon }} + {% when 'download' %} + {{ download_icon }} + {% endcase %} +
+
+ {% endfor %} +
+
+ {% endfor %} + {% unless current_person.signed_in? %} + + {% endunless %} +
+
+
+
+ + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_recommended_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_recommended_courses.html.liquid new file mode 100644 index 00000000..4debf4d8 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_course_recommended_courses.html.liquid @@ -0,0 +1,47 @@ + +{% if similar_count == 0 %} + +{% endif %} + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_footer.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_footer.html.liquid new file mode 100644 index 00000000..1f4a860f --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_footer.html.liquid @@ -0,0 +1,349 @@ + + + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_image.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_image.html.liquid new file mode 100644 index 00000000..8b614256 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_image.html.liquid @@ -0,0 +1,20 @@ +
+
+ {{ banner_image_alt }} +
+

+ {{ banner_title }} +

+
+ {{ banner_text }} +
+ {% unless current_person.signed_in? %} + + {% endunless %} +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_image_alt.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_image_alt.html.liquid new file mode 100644 index 00000000..0bcf972f --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_image_alt.html.liquid @@ -0,0 +1,20 @@ +
+
+ {{ banner_image_alt }} +
+

+ {{ banner_title }} +

+
+ {{ banner_text }} +
+ {% unless current_person.signed_in? %} + + {% endunless %} +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_text.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_text.html.liquid new file mode 100644 index 00000000..2458eef3 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_text.html.liquid @@ -0,0 +1,15 @@ +
+
+

+ {{ banner_title }} +

+
+ {{ banner_text }} +
+ +
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_text_bg_image.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_text_bg_image.html.liquid new file mode 100644 index 00000000..2a6dce6d --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_green_banner_text_bg_image.html.liquid @@ -0,0 +1,16 @@ +
+ Learn Pipedrive green and white background +
+

+ {{ banner_title }} +

+
+ {{ banner_text }} +
+ +
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_head.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_head.html.liquid new file mode 100644 index 00000000..c7b13493 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_head.html.liquid @@ -0,0 +1,131 @@ +{% styles default %} +{% styles colors %} +{% styles custom %} + + + + + + + + + + + + + + +{% include "cookie_banner" %} + +{% comment %} +Hiding language feature + + +{% endcomment %} + + +{% if current_person.signed_in? and current_school.sso_active? %} + {% unless current_person.first_name %} + + {% endunless %} +{% endif %} + + + + +{% include 'seo_logo' %} + +{% if current_school.sso_active? and current_person.signed_in? == false %} + {% include 'sso_login_widget' %} +{% endif %} + +{% if current_school.sso_active? %} + {% if current_person.signed_in? %} + + {% else %} + + {% endif %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_header.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_header.html.liquid new file mode 100644 index 00000000..11b36e42 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_header.html.liquid @@ -0,0 +1,413 @@ +
+
+ menu + + +
+
+
+ + go to + + + + pipedrive.com + + + {% if current_person.signed_in? %} + + {% endif %} +
+
+ + +
+
    +
  • English
  • +
  • Deutsch
  • +
  • Español
  • +
  • Français
  • +
  • Português (BR)
  • +
+
+ + {% if current_person.signed_in? %} + {% if current_person.avatar_url contains "https://secure.gravatar.com/avatar" %} + profile image + {% else %} + profile image + {% endif %} +
+
+ {{ current_person.name }} +
+ + +
+
+ {{ current_person.name }} +
+
+ {{ current_person.email }} +
+ + Settings + + + + + + + Log out + + + + + +
+
+ {% else %} + + Log in + + + + + + {% endif %} +
+ +
+ {% unless current_person.signed_in? %} + + Register + + + + + + {% endunless %} +
+
+
+ +{% include "header_mobile_menu" %} +{% include "messages" %} +{% include 'new_academy_popup' %} + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_header_mobile_menu.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_header_mobile_menu.html.liquid new file mode 100644 index 00000000..e1f07d19 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_header_mobile_menu.html.liquid @@ -0,0 +1,184 @@ +
+
+
+
+ +
+ +
+ {% if current_person.signed_in? %} + {% if current_school.sso_active? %} + + {% else %} + + {% endif %} + {% else %} + + {% endif %} +
+
+
+ + English + Deutsch + Español + Français + Português (BR) + +
+
English
+
Deutsch
+
Español
+
Français
+
Português (BR)
+
+
+ + + + +
+
+ + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_banner.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_banner.html.liquid new file mode 100644 index 00000000..d96c5120 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_banner.html.liquid @@ -0,0 +1,167 @@ +
+
+ banner +
+

+ Hi {{ current_person.first_name }}! +

+
+ Welcome! We have saved your progress about courses + + + + +
+
+ {% assign in_progress = 0 %} + {% assign not_started = 0 %} + {% assign completed = 0 %} + + {% for course in courses.in_catalog %} + {% if course.ribbon != 'VIDEO' %} + {% if course.completed? %} + {% assign completed = completed | plus: 1 %} + {% elsif course.started? == false %} + {% assign not_started = not_started | plus: 1 %} + {% else %} + {% assign in_progress = in_progress | plus: 1 %} + {% endif %} + {% endif %} + {% endfor %} +
+
+ +
+
+ {{ in_progress }} +
+
+ In progress + + + + +
+
+ +
+
+ +
+
+ {{ not_started }} +
+
+ Not started + + + + +
+
+ +
+
+ +
+
+ {{ completed }} +
+
+ Completed + + + + +
+
+
+
+
+
+ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_banner_new_person.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_banner_new_person.html.liquid new file mode 100644 index 00000000..9551d57b --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_banner_new_person.html.liquid @@ -0,0 +1,89 @@ +
+
+ banner +
+

+ + Hi  + + + + + + {% if current_person.first_name %} + {{ current_person.first_name }} + {% else %} + + {% endif %} + ! +

+
+ Welcome to your Pipedrive training hub! Learn the basics of sales CRM software and browse dozens of video guides to expand your knowledge + + + + +
+
+
+
+ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_faq.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_faq.html.liquid new file mode 100644 index 00000000..e94b58a8 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_faq.html.liquid @@ -0,0 +1,76 @@ +
+

+ FAQ +

+
+
+
+
+ + +
+
+ How to learn CRM + + + + +
+
+
+ CRM tools(customer relationship management tools) can help you improve customer experiences with your brand. For the most effective CRM, you need to master various hard and soft skills, including technical, analytical and communication skills. Learning CRM skills doesn’t have to be complicated: There are many ways to grow your skill sets, such as with video tutorials, online guides and quizzes. + + + + +
+
+ +
+
+
+ + +
+
+ How to learn CRM online + + + + +
+
+
+ The benefits of CRM tools are endless, but finding the best CRM system for your business can be a struggle. Pipedrive Learn is a centralized platform full of online courses, video tutorials and webinars written and directed by our experts. Learn how to rally your sales force and close more deals in less time with Pipedrive CRM. You’ll find the solution in our comprehensive video library if you get stuck or have queries. For more advice on sharpening your sales and marketing toolsets, visit the Pipedrive blog. + + + + +
+
+ +
+
+
+ + +
+
+ How to learn CRM software + + + + +
+
+
+ Various types of CRM can help you succeed in business, from cloud-based CRM systems to pen-and-paper solutions. You can access in-depth guides online, including on social media sites like LinkedIn, to learn more about your CRM software. While tutorials may be helpful, high pricing might block you from getting the information you need. Pipedrive Learn is free to access and offers tutorials for all of Pipedrive's features under one roof. Get more tips and tricks to maximize your CRM tool by visiting our Help Center. + + + + +
+
+
+
+{% include 'seo_faq' %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_generic_cards.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_generic_cards.html.liquid new file mode 100644 index 00000000..14f0c0ee --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_generic_cards.html.liquid @@ -0,0 +1,75 @@ +
+
+ {% assign card_button_text = 'See more + + + + ' %} + + {% assign card_image = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" %} + {% assign card_alt_text = "Man watching at a Pipedrive sales academy course on the laptop" %} + {% assign card_title = 'Academy courses + + + + ' %} + {% assign card_description = "We've crafted the perfect online courses to hone your sales strategies. Whether you're starting to use your Pipedrive CRM system or brushing up on your skills, we've got the course for you! + + + + " + %} + {% assign card_button_link = "/app/catalog" %} + {% include "cards_generic" %} + + {% assign card_image = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-video-tutorials.jpg" %} + {% assign card_alt_text = "Woman watching a Pipedrive crm video tutorial on the laptop" %} + {% assign card_title = 'Video tutorials + + + + ' %} + {% assign card_description = "Watch insightful Pipedrive product tutorials made for all types of learners. Learn CRM tips to keep you winning and get team members up to speed with detailed product demos. + + + + " + %} + {% assign card_button_link = "/app/video-tutorials" %} + {% include "cards_generic" %} + + {% assign card_image = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" %} + {% assign card_alt_text = "Group of people sitting at a Pipedrive sales seminar" %} + {% assign card_title = 'Webinars + + + + ' %} + {% assign card_description = "This section gives you access to all our helpful webinars. Sign up for future live streams and browse our entire catalog of on-demand discussions. + + + + " + %} + {% assign card_button_link = 'https://www.pipedrive.com/en/webinars" target="_blank"' %} + {% include "cards_generic" %} +
+
+ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_latest_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_latest_courses.html.liquid new file mode 100644 index 00000000..372cc4ae --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_latest_courses.html.liquid @@ -0,0 +1,310 @@ +
+
+
+ Latest activity + + + + +
+
+ In progress + + + + +
+
+ Completed + + + + +
+
+ My list + + + + +
+
+ +
+
+
+

+ Your latest courses + + + + +

+
+ {% assign any_course = false %} + {% for course in courses.enrolled %} + {% if course.ribbon != "VIDEO" %} + {% if current_person.properties.latest_courses contains course.id %} + {% assign any_course = true %} + {% include 'cards_course_homepage' %} + {% endif %} + {% endif %} + {% endfor %} +
+
+ {% unless any_course %} + + {% endunless %} + +
+

+ Your latest tutorials + + + + +

+
+ {% assign any_course = false %} + {% for course in courses.in_catalog %} + {% if course.ribbon == "VIDEO" %} + {% if current_person.properties.latest_tutorials contains course.id %} + {% assign any_course = true %} + {% include 'cards_course_homepage' %} + {% endif %} + {% endif %} + {% endfor %} +
+
+
+ {% if any_course %} + + {% else %} + + {% endif %} + +
+

+ Courses waiting for you to finish + + + + +

+
+ {% for course in courses.enrolled %} + {% if course.completed? == false and course.started? %} + {% include 'cards_course_homepage' %} + {% endif %} + {% endfor %} +
+
+ +
+

+ Courses you completed + + + + +

+
+ {% for course in courses.enrolled %} + {% if course.completed? %} + {% include 'cards_course_homepage' %} + {% endif %} + {% endfor %} +
+
+ +
+

+ All your courses + + + + +

+
+ {% for course in courses.enrolled %} + {% if course.ribbon != 'VIDEO' %} + {% include 'cards_course_homepage' %} + {% endif %} + {% endfor %} +
+
+
+
+ + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_page_info.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_page_info.html.liquid new file mode 100644 index 00000000..15d7f4a3 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_page_info.html.liquid @@ -0,0 +1,168 @@ +
+
+
+
+ Man watching at a Pipedrive sales academy course on the laptop +
+
+

+ Academy courses + + + + +

+
+ +
    +
  • Learn the Pipedrive fundamentals to streamline your customer data.
  • +
  • Get expert tips to refine your workflow and improve your sales process.
  • +
  • Discover sales courses that help you leverage your CRM solution to win more deals.
  • +
  • Unlock in-depth marketing training courses covering sales pipelines, email marketing and more.
  • +
+
+ + + + +
+ + See more + + + + + +
+
+ +
+
+ Woman watching a Pipedrive crm video tutorial on the laptop +
+
+

+ Video tutorials + + + + +

+
+ +
    +
  • Learn how to use the latest Pipedrive features with quick product tutorials.
  • +
  • Share playlists with new team members to speed up the onboarding process.
  • +
  • Upskill yourself with videos on products and features that you aren’t using to their full potential.
  • +
+
+ + + + +
+ + See more + + + + + +
+
+ +
+
+ Group of people sitting at a Pipedrive sales seminar +
+
+

+ Webinars + + + + +

+
+ +
    +
  • Learn about CRM tools and features straight from our product engineers and managers.
  • +
  • Ask us anything you need to know to optimize your sales game.
  • +
  • Master your pipeline setup and make sure you tailor it to your needs with professional advice.
  • +
+
+ + + + +
+ + See more + + + + + +
+
+ +
+
+ Woman learning CRM tips with Pipedrive online courses +
+
+

+ How to learn CRM tips with online courses + + + + +

+
+ + Pipedrive’s Academy courses are packed with quick, clear videos to help you make the most of our CRM tool.
+ Access detailed video tutorials for Pipedrive features and add-ons such as Campaigns and Automations, or find more general videos to polish your sales management.
+ Watch webinars with sales and marketing thought leaders about how to take your talents to the next level.
+ We’ve designed our videos to help everyone, from Pipedrive CRM platform beginners to seasoned sales pros. So, whether you’re just starting on your sales, marketing or CRM journey or want to refine your knowledge, you'll be able to find the right course for you.
+ + + + +
+
+
+ +
+
+ Man and a woman looking at Learn Pipedrive on the tablet. +
+
+

+ What can I find in Pipedrive Learn? + + + + +

+
+ + Our experts have compiled all our online courses and product guides in one place, so you don’t have to spend valuable time searching across platforms.
+ With our in-depth tutorials, you can learn the following:
+
    +
  • How to make the most of every customer interaction with Pipedrive CRM
  • +
  • All about leveraging crucial insights to create easy-to-read dashboards inside Pipedrive
  • +
  • Tips to cultivate your business processes and up profitability as a small business
  • +
  • Advice on refining your CRM to offer top-class customer support
  • +
  • How to create stunning marketing campaigns with our Campaigns templates
  • +
+ As well as much more! +
+ + + + +
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_recommended.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_recommended.html.liquid new file mode 100644 index 00000000..15120dce --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_homepage_recommended.html.liquid @@ -0,0 +1,63 @@ +
+
+

+ Don’t know where to start? We recommend these + + + + +

+ {% assign any_course = false %} +
+ {% for course in courses.in_catalog %} + {% if course.properties.recommended_for_new_learner %} + {% assign any_course = true %} + {% if course.ribbon == 'VIDEO' %} + {% include 'cards_video' %} + {% else %} + {% include 'cards_course' %} + {% endif %} + {% endif %} + {% endfor %} +
+
+
+ +{% unless any_course %} + +{% endunless %} + + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_messages.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_messages.html.liquid new file mode 100644 index 00000000..e3bb1e67 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_messages.html.liquid @@ -0,0 +1,40 @@ +{% if messages.alert.size > 0 %} +
+
+ {% for message in messages.alert %} + + + +
{{ message }}
+ {% endfor %} +
+
+{% endif %} + +{% if messages.notice.size > 0 %} +
+
+ {% for message in messages.notice %} +
{{ message }}
+ {% endfor %} +
+
+{% endif %} + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_new_academy_popup.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_new_academy_popup.html.liquid new file mode 100644 index 00000000..4d2da4eb --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_new_academy_popup.html.liquid @@ -0,0 +1,135 @@ + + + + + + + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_opinions.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_opinions.html.liquid new file mode 100644 index 00000000..ab1d14b8 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_opinions.html.liquid @@ -0,0 +1,156 @@ +{% capture quotes_svg %} + + + +{% endcapture %} +
+
+

+ Trusted by over 100,000 sales teams around the world + + + + +

+
+
+
+ {{ quotes_svg }} + It has made our sales department more effective and efficient. It’s easy to use and it’s constantly updated. It’s easy to use and it’s constantly updated. + + + + +
+
+
+ Ana Rinck, Operations Manager, BAKERpedia +
+
+
+ Ana Rinck +
+
+ Operations Manager + + + + + , BAKERpedia +
+
+
+
+ +
+
+ {{ quotes_svg }} + Easy to use, reasonably priced, and ensures I don’t drop the ball on following up with my leads! + + + + +
+
+
+ Christine Luken, Author and Speaker, Financial Lifeguard +
+
+
+ Christine Luken +
+
+ Author and Speaker + + + + + , Financial Lifeguard +
+
+
+
+ +
+
+ {{ quotes_svg }} + The best thing we love about Pipedrive is it does two-way sync with Google Apps. It has helped us to better organise and keep everything on track. + + + + +
+
+
+
+ Nirmal Gyanwali, Managing Director, Nirmal Web Studio +
+
+
+
+ Nirmal Gyanwali +
+
+ Managing Director + + + + + , Nirmal Web Studio +
+
+
+
+
+
+
+ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_profile_settings_initial.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_profile_settings_initial.html.liquid new file mode 100644 index 00000000..aee54ddc --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_profile_settings_initial.html.liquid @@ -0,0 +1,48 @@ +
+
+
+
+
+ +
+ +
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_profile_settings_regular.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_profile_settings_regular.html.liquid new file mode 100644 index 00000000..4a065959 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_profile_settings_regular.html.liquid @@ -0,0 +1,51 @@ +{% include "header" %} + +
+
+
+
+
+

+ My profile + + + + +

+
+ +
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_seo_course.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_seo_course.html.liquid new file mode 100644 index 00000000..fcb6f093 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_seo_course.html.liquid @@ -0,0 +1,32 @@ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_seo_faq.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_seo_faq.html.liquid new file mode 100644 index 00000000..9cbee654 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_seo_faq.html.liquid @@ -0,0 +1,30 @@ +{% comment %} This is generic code that will make ld+json tag from any FAQ on page {% endcomment %} + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_seo_logo.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_seo_logo.html.liquid new file mode 100644 index 00000000..490d890d --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_seo_logo.html.liquid @@ -0,0 +1,23 @@ + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_sso_login_widget.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_sso_login_widget.html.liquid new file mode 100644 index 00000000..643c1e03 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_sso_login_widget.html.liquid @@ -0,0 +1,126 @@ +
+
+
+ +
+
+ + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_sub_navigation.html.liquid new file mode 100644 index 00000000..e69de29b diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorial_cover.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorial_cover.html.liquid new file mode 100644 index 00000000..ef3edd3e --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorial_cover.html.liquid @@ -0,0 +1,185 @@ +
+
+ +
+
+
+ {{ course.promo_video_embed_url }} +
+

+ {{ course.name }} +

+
+ {{ course.full_description | strip_html }} +
+
+
+
+ Suggested + + + + +
+
+ {% assign course_cateogries = course.categories | map: 'id' | join: '|' %} + {% for suggested_course in courses.in_catalog %} + {% if suggested_course.ribbon == "VIDEO" and suggested_course.id != course.id %} + {% for suggested_course_category in suggested_course.categories %} + {% if course_cateogries contains suggested_course_category.id %} + +
+ Learn Pipedrive - {{ suggested_course.name }} +
+
+
+ {{ suggested_course.name }} +
+
+ {{ suggested_course.properties.course_time }} +
+
+
+ {% break %} + {% endif %} + {% endfor %} + {% endif %} + {% endfor %} +
+
+
+
+
+
+
+ + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_courses.html.liquid new file mode 100644 index 00000000..752abdad --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_courses.html.liquid @@ -0,0 +1,209 @@ +{% assign categories_uuids = "" %} +{% assign categories_names = "" %} +{% for course in courses.in_catalog %} + {% if course.categories.size > 0 and course.ribbon == "VIDEO" %} + {% assign course_categories_ids = course.categories | map: 'id' | join: "|||" %} + {% assign course_categories_names = course.categories | map: 'name' | join: "|||" %} + {% assign categories_uuids = categories_uuids | append: course_categories_ids | append: "|||" %} + {% assign categories_names = categories_names | append: course_categories_names | append: "|||" %} + {% endif %} +{% endfor %} +{% assign categories_uuids = categories_uuids | split: "|||" | uniq %} +{% assign categories_names = categories_names | split: "|||" | uniq %} + +
+ {% for x in (1..categories_uuids.size) %} + {% assign number_of_videos = 0 %} + {% assign y = x | minus: 1 %} + {% assign category_uuid = categories_uuids | slice: y %} +
+
+

+ {{ categories_names | slice: y }} +

+
+ + Show less + + + + + + + View all + + + + + +
+
+ +
+ {% for course in courses.in_catalog %} + {% assign course_categories = course.categories | map: 'id' %} + {% if course.ribbon == "VIDEO" %} + {% for cat in course_categories %} + {% if category_uuid contains cat %} + {% assign number_of_videos = number_of_videos | plus: 1 %} + {% include "cards_video" %} + {% endif %} + {% endfor %} + {% endif %} + {% endfor %} +
+
+ + {% if number_of_videos <= 3 %} + + {% endif %} + {% endfor %} +
+ +
+ {% include "video_tutorials_filter", uuids: categories_uuids, names: categories_names %} +
+ + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_faq.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_faq.html.liquid new file mode 100644 index 00000000..75dc488a --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_faq.html.liquid @@ -0,0 +1,130 @@ +
+

+ FAQ +

+
+
+
+
+ + +
+
+ What is CRM training? + + + + +
+
+
+ CRM training is any training course or tutorial – these days, typically an online course – that helps your sales force or customer support staff get the most out of your chosen CRM. These courses help you better understand a CRM’s features to develop more efficient, effective workflows, business processes and digital marketing. The idea is to equip your sales force with the skills they need to maximize revenue. + + + + +
+
+ +
+
+
+ + +
+
+ How do I train people to use CRM? + + + + +
+
+
+ The best way to train your staff to use a CRM system is by providing online courses or tutorials specifically for that CRM. Training resources have come a long way – nowadays, your staff can complete interactive, self-paced courses explaining everything from the basics to a CRM’s more complex features. Many courses even include quizzes to test participants’ knowledge or offer different tutorials for different employees (e.g., salespeople vs. non-salespeople). + + + + +
+
+ +
+
+
+ + +
+
+ What concepts are in CRM training? + + + + +
+
+
+ + CRM training typically covers concepts associated with the overall sales process. These can include: +
    +
  • Instructing team members on building and maintaining good customer relationships
  • +
  • Maximizing efficiency with automation tools
  • +
  • Organizing customer data
  • +
  • Creating engaging email marketing
  • +
  • Keeping deals moving through the pipeline for maximum revenue
  • +
+
+ + + + +
+
+
+ +
+
+
+ + +
+
+ What is a CRM course? + + + + +
+
+
+ A CRM course is a training course designed to show people how to use and get the most out of customer relationship management software. Typically, a course begins by introducing the fundamentals of the software before looking in more detail at particular features. CRM courses also usually offer tutorials on optimizing different parts of your company’s sales process and maximizing revenue. + + + + +
+
+ +
+
+
+ + +
+
+ What are the best CRM courses? + + + + +
+
+
+ The best CRM courses are those that best suit your company. A training course should show your staff how to master the basic features of the CRM before looking at add-ons and other tools. Therefore, the course should offer a range of lessons to suit each role – it’s no good making your customer support staff watch in-depth videos on optimizing the sales process if they won’t ever do these tasks. + + + + +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_filter.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_filter.html.liquid new file mode 100644 index 00000000..dc8a1931 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_filter.html.liquid @@ -0,0 +1,77 @@ +{% if uuids.size > 0 %} +
+
+ All topics + + + + +
+ {% for x in (1..uuids.size) %} + {% assign y = x | minus: 1 %} +
+ {{ names | slice: y }} +
+ {% endfor %} +
+
+{% endif %} + + + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_page_info.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_page_info.html.liquid new file mode 100644 index 00000000..6afe238a --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/_video_tutorials_page_info.html.liquid @@ -0,0 +1,88 @@ +
+
+
+
+ Watch Pipedrive crm courses and sales training comfortably +
+
+

+ Watch CRM courses and sales training videos + + + + +

+
+ + In this section, we’ve gathered insightful, in-depth video tutorials and detailed multi-part training programs for different types of learners and sales teams.
+ Learn the fundamentals of our CRM software, get handy tips on how to keep your sales force winning leads and closing deals and find out how to maximize revenue along the sales process.
+ We’ll help bring your team members up to speed with detailed product demos of our CRM platform and talk you through various software features, empowering you to improve all stages of your sales process. +
+ + + + +
+
+
+ +
+
+ Sales professionals watching a Pipedrive CRM tutorial video +
+
+

+ How our CRM tutorial videos can help you with Pipedrive + + + + +

+
+ + Watching online training or video tutorials over other kinds of material has several advantages. Video tutorials offer flexibility – your staff can watch them anywhere – they’re more cost-effective than organizing repeated in-person training and more engaging than other types of material.
+ Additionally, our interactive videos break down complex information into smaller chunks, which is especially useful when showing new team members how you do things.
+ Video tutorials and courses are particularly helpful for users of CRM software. CRMs can be complex, with multiple tools to help sales teams increase revenue. Tutorial videos will help you explain the features of the software your sales team is using. This will in turn give them different ways to increase their productivity and efficiency.
+ Video tutorials will also help you onboard new team members and can save you time when introducing new staff members to a CRM. Additionally, you can make the videos interactive by watching them while going through the tool.
+ The overall purpose of a customer relationship management tool is to maximize revenue. A good online course should offer videos demonstrating how the CRM’s features can increase your sales team’s selling power.
+ Pipedrive offers users videos on many of its features. These features range from reporting tools that make sales results easier to predict – helping your sales team make educated decisions regarding your company’s revenue – to CRM integrations with third-party tools that can facilitate digital marketing or customer support. +
+ + + + +
+
+
+ +
+
+ Learn Pipedrive recommended training courses +
+
+

+ Recommended Pipedrive training courses + + + + +

+
+ + Although Pipedrive is an easy-to-use, intuitive CRM tool, video tutorials can speed up your sales teams’ learning processes.
+ In-depth video tutorials help your sales force use Pipedrive’s CRM software to its fullest potential, empowering them to maximize revenue and efficiency throughout the sales process. Among other things, our video training resources will:
+
    +
  • Demonstrate how to use Pipedrive’s basic features and workflows. Understanding Pipedrive’s fundamentals will give your sales staff the basis to optimize their sales management skills.
  • +
  • Walk your team through more complex software features and tools via in-depth, self-paced online video tutorials.
  • +
  • Provide tips to help you get the most out of our CRM system, helping your sales team with data management, business processes and improving the overall customer experience.
  • +
+
+ + + + +
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/account.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/account.html.liquid new file mode 100644 index 00000000..348b49d3 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/account.html.liquid @@ -0,0 +1,53 @@ +{% include "header" %} + +
+
+ {% include "account_desktop_view", form: form %} +
+
+ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/catalog.html.liquid new file mode 100644 index 00000000..34b5ba8e --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/catalog.html.liquid @@ -0,0 +1,60 @@ +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + +{% else %} + {% include "header" %} + +
+ {% assign banner_title = 'Academy Courses + + + + ' %} + {% assign banner_text = 'Welcome to Pipedrive’s Academy courses! Here, you’ll find virtual training programs and online video courses, to help you and your sales team develop your CRM and sales skills. These courses include in-depth video lessons that will empower you to improve each and every stage of your sales process. + + + + ' %} + {% assign banner_button_text = 'Unlock courses + + + + ' %} + {% assign banner_button_link = "#sso-widget" %} + {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" %} + {% assign banner_image_alt = "Man watching at a Pipedrive sales academy course on the laptop" %} + {% include "green_banner_image" %} + + {% include "catalog_courses" %} + {% include "catalog_page_info" %} + {% include "opinions" %} + {% include 'catalog_faq' %} + + {% assign banner_title = 'How to get most out of Pipedrive? + + + + ' %} + {% assign banner_text = 'Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
+ + + + ' %} + {% assign banner_button_text = 'Start today + + + + ' %} + {% assign banner_button_link = "#sso-widget" %} + {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} + {% assign banner_image_alt = "Learn Pipedrive - CRM pipeline on the laptop" %} + {% include "green_banner_image_alt" %} +
+ + {% include "footer" %} +{% endif %} +{% if current_person.signed_in? == false and current_school.sso_active? %} + +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/course.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/course.html.liquid new file mode 100644 index 00000000..6072131b --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/course.html.liquid @@ -0,0 +1,69 @@ +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + +{% else %} + {% include "header" %} + + {% if course.ribbon == "VIDEO" %} + {% include "video_tutorial_cover" %} + {% else %} + {% include "course_cover" %} + {% endif %} + + {% include "footer" %} + + {% if current_person.signed_in? == false and current_school.sso_active? %} + + {% endif %} + + {% if current_person.signed_in? %} + + {% endif %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/courses.html.liquid new file mode 100644 index 00000000..91290019 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/courses.html.liquid @@ -0,0 +1,3 @@ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/dashboard.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/dashboard.html.liquid new file mode 100644 index 00000000..4b3070f4 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/dashboard.html.liquid @@ -0,0 +1,3 @@ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage-test-new-registered.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage-test-new-registered.html.liquid new file mode 100644 index 00000000..ffdb1c24 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage-test-new-registered.html.liquid @@ -0,0 +1,32 @@ +{% include "header" %} +{% include 'sso_login_widget' %} +
+ {% include 'homepage_banner_new_person' %} + {% include 'homepage_recommended' %} + {% include "homepage_generic_cards" %} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + + {% assign banner_title = 'How to get most out of Pipedrive? + + + + ' %} + {% assign banner_text = 'Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
+ + + + ' %} + {% assign banner_button_text = 'Start today + + + + ' %} + {% assign banner_button_link = "#sso-widget" %} + {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} + {% assign banner_image_alt = "Learn Pipedrive - CRM pipeline on the laptop" %} + {% include "green_banner_image_alt" %} +
+ +{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage-test-not-registered.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage-test-not-registered.html.liquid new file mode 100644 index 00000000..74f1b07f --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage-test-not-registered.html.liquid @@ -0,0 +1,48 @@ +{% include "header" %} + +
+ {% assign banner_title = 'Pipedrive Learn + + + + ' %} + {% assign banner_text = 'Welcome to Pipedrive Learn! Here, you’ll find CRM training videos to help you learn CRM management and sales skills. Explore everything from in-depth sales, marketing and CRM courses to quick tutorials on specific CRM tools. + + + + ' %} + {% assign banner_button_text = 'Register now + + + + ' %} + {% assign banner_button_link = "#sso-widget" %} + {% include "green_banner_text" %} + + {% include "homepage_generic_cards" %} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + + {% assign banner_title = 'How to get most out of Pipedrive? + + + + ' %} + {% assign banner_text = 'Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
+ + + + ' %} + {% assign banner_button_text = 'Start today + + + + ' %} + {% assign banner_button_link = "#sso-widget" %} + {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} + {% assign banner_image_alt = "Learn Pipedrive - CRM pipeline on the laptop" %} + {% include "green_banner_image_alt" %} +
+ +{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage-test-regular-registered.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage-test-regular-registered.html.liquid new file mode 100644 index 00000000..f1d3d092 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage-test-regular-registered.html.liquid @@ -0,0 +1,27 @@ +{% include "header" %} + +
+ {% include 'homepage_banner' %} + {% include 'homepage_latest_courses' %} + + {% assign banner_title = 'How to get most out of Pipedrive? + + + + ' %} + {% assign banner_text = 'Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
+ + + + ' %} + {% assign banner_button_text = 'Start today + + + + ' %} + {% assign banner_button_link = "#sso-widget" %} + {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} + {% include "green_banner_image_alt" %} +
+ +{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage.html.liquid new file mode 100644 index 00000000..f7c4dfbe --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage.html.liquid @@ -0,0 +1,81 @@ +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + +{% else %} + {% include "header" %} + +
+ {% if current_person.signed_in? %} + {% assign new_person = true %} + {% for course in courses.enrolled %} + {% if course.started? %} + {% assign new_person = false %} + {% break %} + {% endif %} + {% endfor %} + {% if new_person %} + {% include 'homepage_banner_new_person' %} + {% include 'homepage_recommended' %} + {% include "homepage_generic_cards" %} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + {% else %} + {% include 'homepage_banner' %} + {% include 'homepage_latest_courses' %} + + {% endif %} + {% else %} + {% assign banner_title = 'Pipedrive Learn + + + + ' %} + {% assign banner_text = 'Welcome to Pipedrive Learn! Here, you’ll find CRM training videos to help you learn CRM management and sales skills. Explore everything from in-depth sales, marketing and CRM courses to quick tutorials on specific CRM tools. + + + + ' %} + {% assign banner_button_text = 'Register now + + + + ' %} + {% assign banner_button_link = "#sso-widget" %} + {% include "green_banner_text" %} + + {% include "homepage_generic_cards" %} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + {% endif %} + + {% assign banner_title = 'How to get most out of Pipedrive? + + + + ' %} + {% assign banner_text = 'Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
+ + + + ' %} + {% assign banner_button_text = 'Start today + + + + ' %} + {% assign banner_button_link = "#sso-widget" %} + {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} + {% assign banner_image_alt = "Learn Pipedrive - CRM pipeline on the laptop" %} + {% include "green_banner_image_alt" %} +
+ + {% include "footer" %} +{% endif %} + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/learning_paths.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/learning_paths.html.liquid new file mode 100644 index 00000000..aa14740b --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/learning_paths.html.liquid @@ -0,0 +1,3 @@ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/login.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/login.html.liquid new file mode 100644 index 00000000..9bcba767 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/login.html.liquid @@ -0,0 +1,149 @@ +
+
+ +
+ + Log in with Pipedrive + + + + + +
+ +
+ {% form_authenticity_token %} +
+ + +
+
+ + + Forgot? +
+ + {% if features.account_creation? %} + + Sign Up + + + + + + {% endif %} + {% if features.request_access? %} + + {{ current_school.request_access_label }} + + {% endif %} +
+
+
+ +{% include 'footer' %} + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/logout.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/logout.html.liquid new file mode 100644 index 00000000..8c5b6ed9 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/logout.html.liquid @@ -0,0 +1,4 @@ +{% comment %} skip-auth {% endcomment %} + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/not_found.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/not_found.html.liquid new file mode 100644 index 00000000..c7895b3d --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/not_found.html.liquid @@ -0,0 +1,10 @@ +
+ + +
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/profile-settings.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/profile-settings.html.liquid new file mode 100644 index 00000000..e3dbd671 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/profile-settings.html.liquid @@ -0,0 +1,113 @@ +{% comment %} Page for SSO school to setup first name {% endcomment %} + +{% if current_person.signed_in? == false %} + +{% else %} + {% if current_person.first_name %} + {% include 'profile_settings_regular' %} + {% else %} + {% include 'profile_settings_initial' %} + {% endif %} + + + + +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/sign_up.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/sign_up.html.liquid new file mode 100644 index 00000000..b38505e0 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/sign_up.html.liquid @@ -0,0 +1,142 @@ +
+
+ +
+ {% form_authenticity_token %} +
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + + By submitting this form you agree to the + + + + + + Terms of Use + + + + + + + + Already have an account? + + + + + + Log in + + + + + + +
+
+
+ +{% include 'footer' %} + + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/styles.css.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/styles.css.liquid new file mode 100644 index 00000000..b2c68d74 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/styles.css.liquid @@ -0,0 +1,589 @@ +@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap'); /* brand colors */ +:root { + --green: #017737; + --green-dark: #014722; + --green-light: #D7F9D3; + --purple: #6861F2; + --purple-dark: #393A97; + --purple-light: #CFD0F9; + --yellow: #FFDE00; + --black-digital: #192435; +} +/* fonts */ +@font-face { + font-family: "Haffer"; + src: url("https://s3.amazonaws.com/static.northpass.com/pipedrive/fonts/Haffer/Haffer-Bold.woff2"); + font-weight: bold; +} +@font-face { + font-family: "Haffer"; + src: url("https://s3.amazonaws.com/static.northpass.com/pipedrive/fonts/Haffer/Haffer-SemiBold.woff2"); + font-weight: 600; +} +@font-face { + font-family: "HafferSQ"; + src: url("https://s3.amazonaws.com/static.northpass.com/pipedrive/fonts/Haffer/HafferSQ-Bold.woff2"); + font-weight: bold; +} +@font-face { + font-family: "HafferSQ"; + src: url("https://s3.amazonaws.com/static.northpass.com/pipedrive/fonts/Haffer/HafferSQ-SemiBold.woff2"); + font-weight: 600; +} + +/* general styling */ +body { + color: var(--black-digital); + background: #FFF; + font-family: Inter, sans-serif; + font-size: 18px; + line-height: 200%; +} +@media only screen and (min-width: 768px) { + body { + line-height: 170%; + } +} +a, a:hover, a:focus, a:active { + text-decoration: none; + color: inherit; +} +.container { + width: auto +} +.width-limit { + padding-left: 20px; + padding-right: 20px; + margin: auto; +} +@media only screen and (min-width: 768px) { + .width-limit { + padding-left: 40px; + padding-right: 40px; + max-width: calc(1568px - 80px); + } +} + +/* text styles */ +h1, h2, h3, h4, h5, h6 { + margin: unset; +} +h1 { + font-size: 32px; + line-height: 130%; + font-family: Haffer, sans-serif; +} +h2 { + font-size: 30px; + line-height: 130%; +} +h3 { + font-size: 28px; + line-height: 130%; +} +h4 { + font-size: 24px; + line-height: 150%; +} +h5 { + font-size: 22px; + line-height: 150%; +} +h6 { + font-size: 20px; + line-height: 150%; +} +.body-s { + font-size: 14px; + line-height: 200%; +} +.body-xs { + font-size: 12px; + line-height: 200%; +} +.body-xxs { + font-size: 10px; + line-height: 200%; +} +@media only screen and (min-width: 768px) { + h1 { + font-size: 60px; + } + h2 { + font-size: 44px; + } + h3 { + font-size: 34px; + } + .body-s { + line-height: 180%; + } + .body-xs { + line-height: 180%; + } + .body-xxs { + line-height: 180%; + } +} +.strong { + font-weight: 700; +} +/* buttons */ +.button-wrapper { + display: flex; +} +.button-small, .button-medium, .button-large { + font-weight: 700; + border-radius: 4px; + text-align: center; + line-height: 120%; + width: 100%; + cursor: pointer; +} +.button-small { + padding: 8px 10px; + font-size: 14px; + line-height: 17px; +} +.button-medium { + padding: 10px 20px; + font-size: 18px; + line-height: 21px; +} +.button-large { + padding: 15px 20px; + font-size: 22px; + line-height: 26px; +} +.button-1 { + background: var(--purple); + color: #FFF; + border: none; +} +.button-1:hover, .button-1:focus { + background: #413D99; + color: white; +} +.button-2 { + background: #E1E1FF; + color: #413D99; + border: none; +} +.button-2:hover, .button-2:focus { + background: #C4C2FF; + color: #413D99; +} +.np-button:hover { + color: white; +} + +/* green banner */ +.green-banner-wrapper { + background: var(--green-light); +} +.green-banner-wrapper-text-bg-image { + position: relative; + overflow-x: clip; +} +.green-banner { + padding-top: 40px; + padding-bottom: 40px; +} +.green-banner-image { + width: 100%; + margin-bottom: 20px; +} +.green-banner-title { + color: var(--green); + font-weight: 700; +} +.green-banner-text { + max-width: 800px; + margin: 0 auto 20px; +} +.green-banner-bg-image { + display: none; +} +.green-banner-wrapper-text-bg-image .green-banner-title { + color: var(--black-digital); + margin-bottom: 20px; +} +.green-banner-wrapper-text-bg-image .green-banner-button { + width: 100%; +} +.green-banner-wrapper-text-bg-image .green-banner-title, +.green-banner-wrapper-text-bg-image .green-banner-text { + text-align: center; +} +.green-banner-wrapper-image-alt { + background: #F7F7FE; +} +.green-banner-wrapper-image-alt .green-banner-title { + color: var(--black-digital); +} + +@media only screen and (min-width: 768px) { + .green-banner { + padding-top:80px; + padding-bottom:80px; + } + .green-banner-image { + margin-bottom: 0; + flex: 1 1 0px; + width: 0; + object-fit: contain; + } + .green-banner-title { + margin-bottom: 20px; + } + .green-banner-button { + width: max-content; + } + .green-banner-wrapper-text .green-banner-title, + .green-banner-wrapper-text .green-banner-text { + text-align: center; + } + .green-banner-wrapper-text .green-banner-button, + .green-banner-wrapper-text-bg-image .green-banner-button { + margin: auto; + } + .green-banner-wrapper-text-bg-image { + min-height: 300px; + margin: auto; + display: flex; + } + .green-banner-wrapper-text-bg-image .green-banner { + z-index: 1; + position: relative; + margin: auto; + width: 60%; + } + .green-banner-wrapper-image .green-banner-content { + flex: 1 1 0px; + width: 0; + align-self: center; + } + .green-banner-wrapper-text-bg-image .green-banner-button { + width: auto; + } + .green-banner-wrapper-image .green-banner { + display: flex; + flex-direction: row-reverse; + gap: 40px; + } + .green-banner-wrapper-image-alt .green-banner { + gap: 80px; + } + .green-banner-text a { + color: #0D68C5; + } + .green-banner-text a:hover { + text-decoration: underline; + } +} +@media only screen and (min-width: 1500px) { + .green-banner-bg-image { + display: block; + right: calc((100vw - 1500px) / 2 - 273px); + z-index: 0; + position: absolute; + top: 0; + height: 100%; + } +} +@media only screen and (min-width: 2046px) { + .green-banner-bg-image { + right: 0; + } +} + +/* course-card */ +.course-card { + padding-bottom: 30px; +} +.course-card-wrapper { + position: relative; + height: 100%; + display: flex; + flex-direction: column; + cursor: pointer; +} +.course-card-ribbon { + position: absolute; + right: 10px; + top: 10px; + padding: 2px 10px; + background: var(--yellow); + border-radius: 30px; + font-weight: 700; + text-transform: uppercase; +} +.course-card-ribbon.ribbon-blue { + color:#fff; + background: #0070D6; +} +.course-card-image { + width: 100%; + margin-bottom: 10px; +} +.course-card-image[src^="//cdn.northpass.com/assets/defaults"] { + aspect-ratio: 1.8125/1; +} +.course-card-content { + height: 100%; + display: flex; + flex-direction: column; +} +.course-card-info { + text-transform: uppercase; + color: #656E7A; + font-weight: 700; + margin-bottom: 10px; +} +.course-card-info-separator { + padding: 0 10px; +} +.course-card-title { + font-weight: 700; + margin-bottom: 10px; +} +.course-card-footer { + margin-top: auto; + padding-top: 20px; +} +.course-card-button { + width: max-content; +} +.generic-cards-collection .course-card-button { + margin-top: 20px; +} +.course-card-progress { + margin-bottom: 20px; +} +.course-card-progress-value { + color: var(--green); +} +.course-card-progress-bar { + width: 100%; + border-radius: 20px; + height: 2px; + background: #DADDE1; +} +.course-card-progress-bar-fill { + height: 2px; + background: var(--green); +} +.course-card:hover .course-card-title { + text-decoration: underline; +} +@media only screen and (min-width: 768px) { + .course-card { + padding-bottom: 40px; + } +} +.video-card-ribbon { + position: absolute; + right: 10px; + top: 10px; + color: #FFF; + background: var(--black-digital); + border-radius: 4px; + padding: 6px 10px 6px 14px; + display: flex; + align-items: center; + } +.video-card-ribbon svg { + margin-right: 14px; +} +/* page info */ +.page-info-wrapper { + background: #F7F7FE; + padding-top: 40px; +} +.page-info-section:not(:last-child) { + margin-bottom: 40px; +} +.page-info-section > * { + padding-bottom: 40px; +} +.page-info-section-title { + margin-bottom: 20px; +} +.page-info-section-image-wrapper { + display: flex; + width: 100%; +} +.page-info-section-image { + width: 100%; + align-self: center; +} +.page-info-section-text { + display: flex; + flex-direction: column; + justify-content: center; + width: 100%; +} +.page-info-section-description a { + color: #0D68C5; +} +.page-info-section-description a:hover { + text-decoration: underline; +} +.page-info-section .button-2 { + margin-top: 20px; +} +.page-info-section ul { + margin: 0; + padding-left: 30px; +} +@media only screen and (min-width: 768px) { + .page-info-section .button-2 { + width: fit-content; + } +} +@media only screen and (min-width: 1024px) { + .page-info-wrapper { + padding-top: 80px; + padding-bottom: 80px; + } + .page-info-section:not(:last-child) { + margin-bottom: 80px; + } + .page-info-section { + gap: 60px; + display: flex; + } + .page-info-section > * { + padding-bottom: 0; + flex: 1 1 0px; + width: 0; + } + .page-info-section:nth-child(odd) { + flex-direction: row-reverse; + } +} + +/* FAQ */ +.faq { + padding-top: 60px; + padding-bottom: 60px; +} +.faq-title { + padding-bottom: 40px; + border-bottom: 1px solid #E4E6E9; +} +.faq-element { + border-bottom: 1px solid #E4E6E9; + padding: 20px 0; +} +.faq-question { + display: flex; + cursor: pointer; +} +.faq-question-icon { + cursor: pointer; + background: #F4F5F6; + border-radius: 50%; + margin-right: 20px; + position: relative; + display: flex; + height: fit-content; + align-self: center; +} +.faq-question-icon > i { + height: 36px; + width: 36px; +} +.faq-question-icon > i::before { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); +} +.faq-question-icon .faq-icon-opened { + display: none; +} +.faq-question:hover .faq-question-text, .faq-question.open .faq-question-text { + font-weight: 700; +} +.faq-question:hover .faq-question-icon, .faq-question.open .faq-question-icon { + background: #EDEEF0; +} +.faq-question-text { + display: flex; + align-items: center; +} +.faq-answer { + display: none; + margin-left: 56px; + margin-top: 10px; +} +.faq-answer a { + color: #0D68C5; +} +.faq-answer a:hover { + text-decoration: underline; +} +.faq-question.open .faq-icon-opened { + display: block; +} +.faq-question.open .faq-icon-closed { + display: none; +} +.faq-question.open ~ .faq-answer { + display: block; +} + +@media only screen and (min-width: 768px) { + .faq { + padding-top: 80px; + padding-bottom: 80px; + } +} + +{% comment %} +We are currently turning off translation, so commenting this code +/* translations */ +body.lang-en .lang-es, body.lang-en .lang-de, body.lang-en .lang-fr, body.lang-en .lang-br { + display: none !important; +} +body.lang-es .lang-en, body.lang-es .lang-de, body.lang-es .lang-fr, body.lang-es .lang-br { + display: none !important; +} +body.lang-de .lang-es, body.lang-de .lang-en, body.lang-de .lang-fr, body.lang-de .lang-br { + display: none !important; +} +body.lang-fr .lang-es, body.lang-fr .lang-de, body.lang-fr .lang-en, body.lang-fr .lang-br { + display: none !important; +} +body.lang-br .lang-es, body.lang-br .lang-de, body.lang-br .lang-fr, body.lang-br .lang-en { + display: none !important; +} +/* fallback to english for wrongly added body language class */ +body:not(.lang-en):not(.lang-br):not(.lang-de):not(.lang-es):not(.lang-fr) .lang-es, +body:not(.lang-en):not(.lang-br):not(.lang-de):not(.lang-es):not(.lang-fr) .lang-de, +body:not(.lang-en):not(.lang-br):not(.lang-de):not(.lang-es):not(.lang-fr) .lang-fr, +body:not(.lang-en):not(.lang-br):not(.lang-de):not(.lang-es):not(.lang-fr) .lang-br { + display: none !important; +} +{% endcomment %} +/* this code is added to turn off translations */ +.language-dropdown-wrapper { + display: none !important; +} +.lang-es:not(body), .lang-de:not(body), .lang-br:not(body), .lang-fr:not(body) { + display: none !important; +} +.footer-language-wrapper { + display: none !important; +} +.side-menu-language { + display: none !important; +} +.footer-bottom-row:not(.body-s) { + justify-content: end; +} +.header-profile-image { + margin-left: 20px; +} +/* end of translations changes */ diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/training_events.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/training_events.html.liquid new file mode 100644 index 00000000..aa14740b --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/training_events.html.liquid @@ -0,0 +1,3 @@ + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - Public/video-tutorials.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - Public/video-tutorials.html.liquid new file mode 100644 index 00000000..80c10607 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive Learn - Public/video-tutorials.html.liquid @@ -0,0 +1,58 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + +{% else %} + {% include "header" %} + +
+ {% assign banner_title = 'Video tutorials + + + + ' %} + {% assign banner_text = 'Welcome to Pipedrive’s video tutorials section, where you’ll find video and CRM training resources to help your business grow with our CRM software. + + + + ' %} + {% assign banner_button_text = 'Sign up for courses + + + + ' %} + {% assign banner_button_link = "#sso-widget" %} + {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" %} + {% assign banner_image_alt = "Group of people sitting at a Pipedrive sales seminar" %} + {% include "green_banner_image" %} + + {% include "video_tutorials_courses" %} + {% include "video_tutorials_page_info" %} + {% include 'opinions' %} + {% include 'video_tutorials_faq' %} + + {% unless current_person.signed_in? %} + {% assign banner_title = 'Unlock videos for free + + + + ' %} + {% assign banner_text = "" %} + {% assign banner_button_text = 'Sign up + + + + ' %} + {% assign banner_button_link = "#sso-widget" %} + {% include "green_banner_text_bg_image" %} + {% endunless %} +
+ + {% include "footer" %} +{% endif %} + +{% if current_person.signed_in? == false and current_school.sso_active? %} + +{% endif %} diff --git a/Custom_Templates/customer_templates/Recast Software/_account_desktop_view.html.liquid b/Custom_Templates/customer_templates/Recast Software/_account_desktop_view.html.liquid new file mode 100644 index 00000000..aeb19bb6 --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_account_desktop_view.html.liquid @@ -0,0 +1,19 @@ +
+ + {% form_authenticity_token %} +
+
+
+ + +
+
+
+
diff --git a/Custom_Templates/customer_templates/Recast Software/_account_form.html.liquid b/Custom_Templates/customer_templates/Recast Software/_account_form.html.liquid new file mode 100644 index 00000000..5184d74d --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_account_form.html.liquid @@ -0,0 +1,148 @@ +
+ {% t .header %} +
+
+
Country: {{country}}
+
Company: {{company}}
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +{% unless form.options.invite? %} +
+ + +
+ +
+ + +
+ +
+ + +
+{% endunless %} + +{% if form.options.invite? %} +
+ + +
+ + {% if form.terms_of_service_required? %} +
+ +
+ {% t .terms_of_service %} +
+
+ {% else %} +
+ + {% t .terms %} + + {% t .terms_link %} + + +
+ {% endif %} + + +{% endif %} + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Recast Software/_account_mobile_view.html.liquid b/Custom_Templates/customer_templates/Recast Software/_account_mobile_view.html.liquid new file mode 100644 index 00000000..e5707dfb --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_account_mobile_view.html.liquid @@ -0,0 +1,17 @@ +
+ + {% form_authenticity_token %} +
+
+ {% render "account_form", form: form, version: "mobile", country:current_person.properties.country, company:current_person.properties.company %} +
+
+
+
+ {% include "account_avatar", version: "mobile" %} +
+
+ +
diff --git a/Custom_Templates/customer_templates/Recast Software/_cards_course.html.liquid b/Custom_Templates/customer_templates/Recast Software/_cards_course.html.liquid new file mode 100644 index 00000000..5402ed64 --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_cards_course.html.liquid @@ -0,0 +1,34 @@ +
+
+ {% if course.ribbon %} +
+ {{ course.ribbon }} +
+ {% endif %} + {{ course.name }} +
+

+ {{ course.name }} +

+
+ {{ course.instructor_names }} +
+ +
+
+
diff --git a/Custom_Templates/customer_templates/Recast Software/_cards_featured_course.html.liquid b/Custom_Templates/customer_templates/Recast Software/_cards_featured_course.html.liquid new file mode 100644 index 00000000..348ca34b --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_cards_featured_course.html.liquid @@ -0,0 +1,37 @@ +
+
+ {% if course.ribbon %} +
+ {{ course.ribbon }} +
+ {% endif %} + {{ course.name }} +
+

+ {{ course.name }} +

+
+ {{ course.instructor_names }} +
+ + +
+
+
diff --git a/Custom_Templates/customer_templates/Recast Software/_cards_featured_training_event.html.liquid b/Custom_Templates/customer_templates/Recast Software/_cards_featured_training_event.html.liquid new file mode 100644 index 00000000..8bf4916f --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_cards_featured_training_event.html.liquid @@ -0,0 +1,46 @@ +
+
+
+

+ {{ training_event.title }} +

+
+ {{ training_event.event_type }} +
+
+ +
+
+
+ {{ training_event.sessions.first.month }} +
+
+ {{ training_event.sessions.first.year }} +
+
+
+ {% if training_event.sessions.first.day < 10 %}0{% endif %}{{ training_event.sessions.first.day }} +
+
+
+
+
+
+
+ + Total Sessions: {{training_event.sessions.size}} + + + {% t shared.view %} + +
+
+
+
+ \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Recast Software/_carousel_featured_events.html.liquid b/Custom_Templates/customer_templates/Recast Software/_carousel_featured_events.html.liquid new file mode 100644 index 00000000..6a7e1d46 --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_carousel_featured_events.html.liquid @@ -0,0 +1,22 @@ + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Recast Software/_head.html.liquid b/Custom_Templates/customer_templates/Recast Software/_head.html.liquid new file mode 100644 index 00000000..7da43d55 --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_head.html.liquid @@ -0,0 +1,26 @@ +{% styles default %} +{% styles colors %} +{% styles custom %} + + + + + + + + + + +{% if current_person.signed_in? and current_person.properties.company == "NULL" and current_person.properties.country == "NULL"%} + + {% endif %} + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Recast Software/_header.html.liquid b/Custom_Templates/customer_templates/Recast Software/_header.html.liquid new file mode 100644 index 00000000..be5c020e --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_header.html.liquid @@ -0,0 +1,218 @@ +
+ + +
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ {% if current_school.logo_url %} +

+ + {{ current_school.name }} + +

+ {% else %} + + {{ current_school.name }} + + {% endif %} + +
+ {% include "sub_navigation" %} +
+ + {% comment %}
+ +
{% endcomment %} + {% if current_person.signed_in? %} + +
+ + +
+ {% else %} +
+ {% endif %} + +
+ +
+
+
+
+ +{% include "messages" %} + + + diff --git a/Custom_Templates/customer_templates/Recast Software/_progress_circle.html.liquid b/Custom_Templates/customer_templates/Recast Software/_progress_circle.html.liquid new file mode 100644 index 00000000..009b56a4 --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_progress_circle.html.liquid @@ -0,0 +1,80 @@ +
+ + + + {{count}} + +

+ {{name}} +

+
+ + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Recast Software/_section_glossary.html.liquid b/Custom_Templates/customer_templates/Recast Software/_section_glossary.html.liquid new file mode 100644 index 00000000..61076fe7 --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_section_glossary.html.liquid @@ -0,0 +1,196 @@ + + + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Recast Software/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Recast Software/_sub_navigation.html.liquid new file mode 100644 index 00000000..b432c10b --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_sub_navigation.html.liquid @@ -0,0 +1,13 @@ + diff --git a/Custom_Templates/customer_templates/Recast Software/_widget_course_progress.html.liquid b/Custom_Templates/customer_templates/Recast Software/_widget_course_progress.html.liquid new file mode 100644 index 00000000..af9d635f --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/_widget_course_progress.html.liquid @@ -0,0 +1,88 @@ +
+
+
+ {% if courses.enrolled.any? %} + {% assign countComplete = 0 %} + {% assign countInProgress = 0 %} + {% assign countNotStarted = 0 %} + {% assign countTotal = 0 | times: 1.0 %} + {% for course in courses.enrolled %} + {% assign countTotal = countTotal | plus: 1 %} + {% if course.progress == 100 %} + {% assign countComplete = countComplete | plus: 1 %} + {% endif %} + {% if course.progress > 0 and course.progress < 100 %} + {% assign countInProgress = countInProgress | plus: 1 %} + {% endif %} + {% if course.progress == 0 %} + {% assign countNotStarted = countNotStarted | plus: 1 %} + {% endif %} + {% endfor %} +
    +
  • + {% + include "progress_circle", + name:'Completed' , + count: countComplete , + total: countTotal, + size: "120", + stroke_color: "rgba(43, 178, 76, 1)", + stroke_color_bg: "rgba(255, 255, 255, 0.15)" + %} +
  • +
  • + {% + include "progress_circle", + name:'In Progress' , + count: countInProgress , + total: countTotal, + size: "120", + stroke_color: "rgba(43, 178, 76, 1)", + stroke_color_bg: "rgba(255, 255, 255, 0.15)" + %} +
  • +
+ {% else %} + {% capture message %} + {% t shared.zero_state.courses.index, + key: current_school.course_vocabulary + %} + {% endcapture %} + {% include "courses_zero_state", message: message %} + {% endif %} +
+
+
+ + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Recast Software/catalog.html.liquid b/Custom_Templates/customer_templates/Recast Software/catalog.html.liquid new file mode 100644 index 00000000..891fc9b1 --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/catalog.html.liquid @@ -0,0 +1,23 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.in_catalog %} +{% comment %}{% include "sub_navigation" %}{% endcomment %} +
+
+
+
{{ catalog.headline }}
+
{{ catalog.subheadline }}
+
+ {% capture label %}{% t shared.filters.by_category %}{% endcapture %} + + {% if courses.in_catalog.any? %} + {% + include "filter_dropdown", + filters: courses.filters, + key: "category_uuid", + label: label + %} + {% endif %} +
+ {% include "courses_catalog" %} +
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Recast Software/course.html.liquid b/Custom_Templates/customer_templates/Recast Software/course.html.liquid new file mode 100644 index 00000000..0d328e9a --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/course.html.liquid @@ -0,0 +1,20 @@ +{% if course.properties.skip_course_cover_page %} + {% if course.enrolled? %} + + {% else %} + + {% endif %} + +{% else %} + +{% include "header" %} +
+
+ {% include "course_desktop_view" %} +
+
+ {% include "course_mobile_view" %} +
+
+{% include "footer" %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Recast Software/dashboard.html.liquid b/Custom_Templates/customer_templates/Recast Software/dashboard.html.liquid new file mode 100644 index 00000000..d2a0bd3f --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/dashboard.html.liquid @@ -0,0 +1,29 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} +{% comment %}{% include "sub_navigation" %}{% endcomment %} +
+
+
Hi {{current_person.first_name}}! 👋
+
This is what's relevant to you right now in Recast Academy.
+
+ +
+
+ {% if features.learning_paths? %} +
+ {% t shared.learning_paths %} +
+ {% include "learning_paths_index", items: learning_paths.enrolled %} + {% endif %} +
+ {% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %} +
+ {% include "courses_index", class: "col-xs-12 col-sm-6 np-stretch-content" %} +
+
+
Course Progress
+ {% include "widget_course_progress" %} +
+
+
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Recast Software/homepage.html.liquid b/Custom_Templates/customer_templates/Recast Software/homepage.html.liquid new file mode 100644 index 00000000..3c9b115f --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/homepage.html.liquid @@ -0,0 +1,210 @@ +{% include "header" %} +{% if current_person.signed_in? %} +{% include "course_version_outdated_alert", courses: courses.featured %} +{% endif %} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.subheadline }} +
+ + {% t .discover %} + +
+
+ {% comment %}{% include "sub_navigation" %}{% endcomment %} + +
+{% include "footer" %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Recast Software/learning_paths.html.liquid b/Custom_Templates/customer_templates/Recast Software/learning_paths.html.liquid new file mode 100644 index 00000000..3c446c54 --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/learning_paths.html.liquid @@ -0,0 +1,14 @@ +{% include "header" %} +{% comment %}{% include "sub_navigation" %}{% endcomment %} +
+
+
+ {% t shared.learning_paths %} +
+
+ {% t .subtitle %} +
+ {% include "learning_paths_index", items: learning_paths.available %} +
+
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Recast Software/sign-up-follow-up.html.liquid b/Custom_Templates/customer_templates/Recast Software/sign-up-follow-up.html.liquid new file mode 100644 index 00000000..0f706c47 --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/sign-up-follow-up.html.liquid @@ -0,0 +1,514 @@ +{% for group in current_person.groups %} + {% if group.id == "29ae12e6-f740-4190-a5c2-a7e12e87926f" or group.id == "aa36069f-e354-4dbe-9972-9ce70ad146d7" or group.id == "8cd6ec9c-101e-4b1a-82c7-77dac583a1f5" %} + + {% endif %} +{% endfor %} + + + {% include "header" %} +
+
+
+
+
Welcome!
+
We need a little more information to tailor the best courses to your role
+ {% form_authenticity_token %} +
+ + +
+
+ + +
+
+ +
+
+
+ {% include "footer" %} + + + + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Recast Software/styles.css.liquid b/Custom_Templates/customer_templates/Recast Software/styles.css.liquid new file mode 100644 index 00000000..96f28cff --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/styles.css.liquid @@ -0,0 +1,253 @@ + /* + Put your custom overlay styles in here + You can use your northpass color palette in this file + +{{ color_palette.button_font_color }} +{{ color_palette.button_color }} +{{ color_palette.button_hover_color }} +{{ color_palette.header_font_color }} +{{ color_palette.header_font_hover_color }} +{{ color_palette.header_color }} +*/ + +@font-face { + font-family: "archia-regular"; + src: url("https://s3.amazonaws.com/static.northpass.com/recast/Archia-Regular.otf") format("opentype"); +} + +main, +body{ + font-family: "archia-regular", serif; +} + + +/* Global */ +.np-button{ + background: #29ABE2; + border: none; +} + +.np-button:hover{ + background: #FFFFFF !important; + color: #29ABE2; + border: 1px solid #29ABE2; +} +/* ----------------------------------------------------------------------------------------------------------------------- */ +/* Header */ +/* Header: Subnav */ +.np-sub-navigation{ + background: transparent; + margin-bottom: 0; + margin-top: 1.25rem; +} + +.np-sub-navigation-content-item-icon, +.np-sub-navigation-content-item-link, +.np-sub-navigation-content-item-active .np-sub-navigation-content-item-link, +.np-button, .np-button-background-color, +.sub-navigation-content-item-bar{ + color: #fff; +} + +@media (min-width: 768px){ + .np-header-logo, + .np-header-search{ + flex-grow: 0.5; + } + + .np-header-logo-image{ + height: 2.5rem; + } + + .np-header-avatar-image{ + height: 3.5rem; + width: 3.5rem; + } + + .np-header-content .desktop-subnav{ + margin: 0 5%; + } + + .np-sub-navigation-content-item{ + margin: 0 0.5rem; + } +} + +@media (min-width: 900px){ + .np-sub-navigation-content-item{ + margin: 0 1rem; + } +} + +@media (min-width: 900px){ + .np-sub-navigation-content-item{ + margin: 0 1.75rem; + } +} + +/* ----------------------------------------------------------------------------------------------------------------------- */ +/* Homepage Sections */ +/* Section: Events */ +.np-homepage-hero-image{ + object-fit: fill; +} + +.homepage-event-card{ + padding: 1rem 2.3rem !important; +} + +.np-carousel { + margin-bottom: 3rem; +} + +.np-carousel .slick-track { + display: flex; +} +.np-carousel .slick-slide { + height: auto; +} +.np-carousel .np-card { + height: 100%; +} + +.np-carousel .slick-arrow { + color: #089fb7; + font-size: 2.5rem; + opacity: 1; + transition: opacity 0.2s; + display: flex; + align-items: center; + top: 0; +} + +.np-carousel .slick-arrow:before { + position: absolute; + width: 80px; + z-index: 500; + display: flex; + height: 100%; + align-items: center; + top: 0; +} + +.np-carousel .slick-arrow.fa-chevron-left { + left: -8px; +} + +.np-carousel .slick-arrow.fa-chevron-right { + right: -8px; + justify-content: flex-end; +} + +.np-carousel .slick-arrow.fa-chevron-left:before { + cursor: pointer; +} + +.np-carousel .slick-arrow.fa-chevron-right:before { + justify-content: flex-end; + cursor: pointer; +} + +.np-carousel .slick-arrow.slick-disabled { +opacity: 0; +cursor: text; +} +.np-carousel-card .np-card { + padding-bottom: 0; +} + +@media (min-width: 768px) { + .np-carousel .slick-track { + margin-left: 0; + } +} + +@media (min-width: 1024px) { + .np-carousel .slick-arrow:before { + width: 100px; + } +} + +/* Section: Glossary */ +.np-glossary { + margin-bottom: 3rem; +} + +.np-accordion { + margin: 0 22px 32px; +} + +.accordion-btn { + color: #001e2e; + background-color: #fff; + cursor: pointer; + width: 100%; + min-height: 76px; + padding: 0 18px 0 92px; + text-align: left; + border: none; + outline: none; + transition: 0.4s; + position: relative; + display: flex; + align-items: center; + border-radius: 8px; +} + +.fa-plus, +.fa-minus { + background: #323F48; + font-size: 2.5rem; + color: #29ABE2; + position: absolute; + left: 0; + top: 0; + width: 76px; + height: 76px; + display: flex; + align-items: center; + justify-content: center; + transition: 0.4s; + border-radius: 8px 0 0 8px; +} + +.accordion-title, +.accordion-panel-content { + line-height: 1.375rem; + position: relative; +} +.accordion-panel-content { + padding: 18px; +} +.accordion-panel-content p { + margin-top: 0; +} + +.accordion-panel-content:before { + content: ""; + width: 75px; + height: 1px; + background: #B04EC4; + position: absolute; + top: 0; + left: 18px; +} + +.accordion-panel { + color: #001e2e; + background-color: #fff; + max-height: 0; + overflow: hidden; + transition: max-height 0.4s ease-out; + margin-left: 76px; +} + +@media (min-width: 768px) { + .np-glossaries { + margin: 0 4.0625rem; + } + .np-accordion { + margin: 0 8px 32px; + } +} +/* ----------------------------------------------------------------------------------------------------------------------- */ \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Recast Software/training_events.html.liquid b/Custom_Templates/customer_templates/Recast Software/training_events.html.liquid new file mode 100644 index 00000000..ac212bc6 --- /dev/null +++ b/Custom_Templates/customer_templates/Recast Software/training_events.html.liquid @@ -0,0 +1,19 @@ +{% include "header" %} +{% comment %}{% include "sub_navigation" %}{% endcomment %} +
+
+
+
+ {% t .title %} +
+
+ {% t .subtitle %} +
+
+
+ {% include "training_events_filter" %} +
+
+ {% include "training_events_index" %} +
+{% include "footer" %} diff --git a/CustomerNotes/Walmart.md b/CustomerNotes/Walmart.md index f723a0f2..527a7f7e 100644 --- a/CustomerNotes/Walmart.md +++ b/CustomerNotes/Walmart.md @@ -445,3 +445,17 @@ Dave taking over for Nichole. Dave's role is Lead Technical Writer, Senior Desig Knowledge Base. DONE: Reach out to J about deep linking between resources. +TODO: Ask Cam to mock up the resource bundle experiences - aka Learning Paths. + + +## 04/26/2023 + +### Design Changes? + +Pull in Aditi after making a list for her. The items for Aditi are: + +* The back arrow when the course has no image. Should text change? Arrow into X? +* Duplicate titles surround this experience too. Should the title below be `display: none;`? +* + +Update: Travis and MJ to meet with Aditi internally regarding this issues.