seitime-frappe/frappe/templates/includes/footer/footer_links.html
2026-03-24 19:24:58 -06:00

26 lines
855 B
HTML

{% macro footer_link(item) %}
<a href="{{ item.url | abs_url }}" {% if item.open_in_new_tab %} target="_blank" {% endif %} class="footer-link" rel="noreferrer">
{%- if item.icon -%}
<img src="{{ item.icon }}" alt="{{ item.label }}">
{%- else -%}
{{ _(item.label) }}
{%- endif -%}
</a>
{% endmacro %}
<div class="footer-links">
<div class="row">
<!-- <div class="footer-col-left col-sm-6"> -->
<div class="col-12">
{%- for item in footer_items if item.label and not (item.parent_label or item.child_items) and not item.right %}
{{ footer_link(item) }}
{{ "|" if not loop.last }}
{% endfor -%}
</div>
<!-- <div class="footer-col-right col-sm-6">
{%- for item in footer_items if item.label and not (item.parent_label or item.child_items) and item.right %}
{{ footer_link(item) }}
{% endfor -%}
</div> -->
</div>
</div>