mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
15 lines
428 B
HTML
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">© {% 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>
|