lookingglass/hyperglass/render/templates/footer.html.j2
Matt Love 2f2c32422e 🚀🎨💄
2019-08-06 01:09:55 -07:00

20 lines
No EOL
650 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 %}
</div>
</footer>