Files
django-ram/dcc/portal/templates/footer.html
2022-04-09 22:40:08 +02:00

15 lines
428 B
HTML

<footer class="text-muted py-5">
<div class="container">
<p class="float-end mb-1">
<a href="#">Back to top</a>
</p>
<p class="mb-1">&copy; {% now "Y" %} {{ site_conf.footer }}</p>
<p class="mb-0">{{ site_conf.footer_extended }}</p>
</div>
{% if site_conf.show_version %}
<div class="container">
<p class="small text-muted">Version: {{ site_conf.version }}</p>
</div>
{% endif %}
</footer>