Files
Gainsight/Custom_Templates/customer_templates/Cin7 Customers/_footer.html.liquid

64 lines
1.9 KiB
Plaintext

{% assign omni = false %}
{% assign core = false %}
{% if current_person.signed_in? %}
{% for group in current_person.groups %}
{% if group.id == '9daeef1e-bd6c-47da-a343-ef772ba88300' %}
{% assign core = true %}
{% elsif group.id == 'afa31e2d-646e-4b7e-b65e-c426dc30ec5c' %}
{% assign omni = true %}
{% endif %}
{% endfor %}
{% endif %}
<footer class="np-footer">
<div class="np-footer-top">
{% if website_footer.show_navigation_links? %}
<div class="np-footer-navigation">
<ul class="np-footer-navigation-list">
<div class="footer-heading lora">Resources</div>
<li class="np-footer-navigation-item">
{% if omni %}
<a
class="np-footer-navigation-link"
href="https://connect.cin7.com/s/knowledge"
target="_blank"
>
Knowledge Base
</a>
{% else %}
<a
class="np-footer-navigation-link"
href="https://support.dearsystems.com/"
target="_blank"
>
Knowledge Base
</a>
{% endif %}
</li>
<li class="np-footer-navigation-item">
<a
class="np-footer-navigation-link"
href="https://www.cin7.com/product-updates/"
target="_blank"
>
Release Notes
</a>
</li>
<li class="np-footer-navigation-item">
<a
class="np-footer-navigation-link"
href="mailto:academy-admin@cin7.com"
target="_blank"
>
Contact: academy-admin@cin7.com
</a>
</li>
</ul>
</div>
{% endif %}
</div>
</footer>