Cin7's templates for both internal and external academies. Notes for Cin7 and G2. Wrote a backup script for Anthology in case the CSV workflow fails.

This commit is contained in:
Norm Rasmussen
2024-02-05 17:48:39 -05:00
parent e46883c0f8
commit aa3086c23e
243 changed files with 4494 additions and 50 deletions

View File

@ -0,0 +1,63 @@
{% 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>