90 lines
2.8 KiB
Plaintext
90 lines
2.8 KiB
Plaintext
{% assign omni = false %}
|
|
{% assign core = false %}
|
|
{% assign partners = false %}
|
|
{% assign log_out = true %}
|
|
|
|
{% if current_person.signed_in? %}
|
|
{% assign log_out = false %}
|
|
{% for group in current_person.groups %}
|
|
{% if group.name contains 'Partners' %}
|
|
{% assign partners = true %}
|
|
{% else %}
|
|
{% if group.name contains 'Core' %}
|
|
{% assign core = true %}
|
|
{% elsif group.name contains 'Omni' %}
|
|
{% assign omni = true %}
|
|
{% endif %}
|
|
{% 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>
|
|
{% if omni %}
|
|
<li class="np-footer-navigation-item">
|
|
<a
|
|
class="np-footer-navigation-link"
|
|
href="https://help.omni.cin7.com/hc/en-us"
|
|
target="_blank"
|
|
>
|
|
Omni Help Center
|
|
</a>
|
|
</li>
|
|
{% elsif core %}
|
|
<li class="np-footer-navigation-item">
|
|
<a
|
|
class="np-footer-navigation-link"
|
|
href="https://help.core.cin7.com/hc/en-us"
|
|
target="_blank"
|
|
>
|
|
Core Help Center
|
|
</a>
|
|
</li>
|
|
{% elsif log_out %}
|
|
<li class="np-footer-navigation-item">
|
|
<a
|
|
class="np-footer-navigation-link"
|
|
href="https://help.omni.cin7.com/hc/en-us"
|
|
target="_blank"
|
|
>
|
|
Omni Help Center
|
|
</a>
|
|
</li>
|
|
<li class="np-footer-navigation-item">
|
|
<a
|
|
class="np-footer-navigation-link"
|
|
href="https://help.core.cin7.com/hc/en-us"
|
|
target="_blank"
|
|
>
|
|
Core Help Center
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
<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:{{ website_footer.school_customer_service_email }}"
|
|
>
|
|
{{ website_footer.school_customer_service_email }}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
</footer>
|