forked from mirrors/thatmattlove-hyperglass
29 lines
No EOL
958 B
Django/Jinja
29 lines
No EOL
958 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">
|
|
<small>
|
|
<a class="nav-link active" href="https://as{{ general.primary_asn }}.peeringdb.com/"
|
|
target="_blank">PeeringDB <i class="remixicon-share-circle-line"></i>
|
|
</a>
|
|
</small>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</footer> |