Updated Pipedrive's templates, mostly.

This commit is contained in:
Norm Rasmussen
2024-09-12 18:25:34 -04:00
parent 70b5d04b26
commit e78efae8aa
353 changed files with 5405 additions and 1769 deletions

View File

@ -0,0 +1,42 @@
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
<script> window.location.replace('/learners/sign_in')</script>
{% else %}
{% include "header" %}
<main class="catalog">
{% include "green_banner_image",
banner_title: '<span>Academy courses</span>',
banner_text: '<span>Welcome to Pipedrives Academy courses! Here, youll 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.</span>',
banner_button_text: '<span>Unlock courses</span>',
banner_button_link: "#sso-widget",
banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp"
%}
{% include "catalog_courses", lang: "en" %}
{% include "catalog_page_info" %}
{% include "opinions" %}
{% include 'catalog_faq' %}
{% include "green_banner_image_alt",
banner_title: '<span>How to get the most out of Pipedrive?</span>',
banner_text: '<span>
Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>
Seamlessly keep track of leads and potential customers with Pipedrives intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.<br><br>
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.<br>
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.<br>
</span>',
banner_button_text: '<span>Start today</span>',
banner_button_link: "#sso-widget",
banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png"
%}
</main>
{% include "footer" %}
{% endif %}
{% if current_person.signed_in? == false and current_school.sso_active? %}
<script>
const redirectionLink = 'https://user-learn.pipedrive.com/app/catalog'
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
</script>
{% endif %}