1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-04-24 16:58:31 +00:00
thatmattlove-hyperglass/hyperglass/render/templates/footer.html.j2
2019-08-18 15:02:50 -07:00

27 lines
No EOL
933 B
Django/Jinja

<footer class="footer mt-auto py-3">
<div class="container text-center">
{% if branding.footer.enable and branding.credit.enable %}
<div class="col">
<small>{{ details.footer.content | safe }}</small>
</div>
<div class="col">
{% include "templates/credit.html.j2" %}
</div>
{% elif not branding.credit.enable and branding.footer.enable %}
<div class="col">
<small>{{ details.footer.content | safe }}</small>
</div>
{% elif not branding.footer.enable and branding.credit.enable %}
<div class="col">
{% include "templates/credit.html.j2" %}
</div>
{% endif %}
{% if branding.peering_db.enable %}
<div class="col">
<a class="btn btn-link btn-sm" href="https://as{{ general.primary_asn }}.peeringdb.com/"
target="_blank">PeeringDB&nbsp;<i class="remixicon-share-circle-line"></i>
</a>
</div>
{% endif %}
</div>
</footer>