mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
17 lines
485 B
HTML
17 lines
485 B
HTML
{% load markdown %}
|
|
|
|
<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 | markdown | safe }}</p>
|
|
<p class="mb-0">{{ site_conf.footer_extended | markdown | safe }}</p>
|
|
</div>
|
|
{% if site_conf.show_version %}
|
|
<div class="container">
|
|
<p class="small text-muted">Version: {{ site_conf.version }}</p>
|
|
</div>
|
|
{% endif %}
|
|
</footer>
|