Files
Gainsight/Custom_Templates/customer_templates/Pipedrive Learn - Public/homepage.html.liquid

82 lines
4.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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="homepage">
{% 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 = '<span class="lang-en">Pipedrive Learn</span>
<span class="lang-de"></span>
<span class="lang-es"></span>
<span class="lang-fr"></span>
<span class="lang-br"></span>' %}
{% assign banner_text = '<span class="lang-en">Welcome to Pipedrive Learn! Here, youll 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.</span>
<span class="lang-de"></span>
<span class="lang-es"></span>
<span class="lang-fr"></span>
<span class="lang-br"></span>' %}
{% assign banner_button_text = '<span class="lang-en">Register now</span>
<span class="lang-de"></span>
<span class="lang-es"></span>
<span class="lang-fr"></span>
<span class="lang-br"></span>' %}
{% 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 = '<span class="lang-en">How to get most out of Pipedrive?</span>
<span class="lang-de"></span>
<span class="lang-es"></span>
<span class="lang-fr"></span>
<span class="lang-br"></span>' %}
{% assign banner_text = '<span class="lang-en">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.</span>
<span class="lang-de"></span>
<span class="lang-es"></span>
<span class="lang-fr"></span>
<span class="lang-br"></span>' %}
{% assign banner_button_text = '<span class="lang-en">Start today</span>
<span class="lang-de"></span>
<span class="lang-es"></span>
<span class="lang-fr"></span>
<span class="lang-br"></span>' %}
{% 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" %}
</main>
{% include "footer" %}
{% endif %}
<script>
{% if current_person.signed_in? == false and current_school.sso_active? %}
const redirectionLink = 'https://user-learn.pipedrive.com/app'
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
{% endif %}
</script>