Files
Gainsight/Custom_Templates/customer_templates/Stripe/_sub_navigation.html.liquid

11 lines
677 B
Plaintext
Raw Normal View History

2022-05-02 07:00:38 -04:00
<nav class="np-sub-navigation">
<div class="np-sub-navigation-content">
2022-05-05 14:13:26 -04:00
{% comment %} . {% include "sub_navigation_item", label: "All Courses", icon: "fa fa-book-open", url: '/app/courses' %} {% endcomment %}
2022-05-02 07:00:38 -04:00
{% include "sub_navigation_item", label: "Partner Training", icon: "fa fa-tasks", url: "/app/partner-training" %}
{% if current_person.properties.partner_training_cert == true %}
2022-05-02 16:43:55 -04:00
{% include "sub_navigation_item", label: "Partner Certifications", icon: "fa fa-desktop", url: "/app/partner-certs" %}
2022-05-02 07:00:38 -04:00
{% else %}
2022-05-02 16:43:55 -04:00
{% include "sub_navigation_item", label: "Partner Certifications", icon: "fa-solid fas fa-exclamation", url: "" %}
2022-05-02 07:00:38 -04:00
{% endif %}
</div>
</nav>