mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
18 lines
611 B
HTML
18 lines
611 B
HTML
<footer class="bg-dark text-white">
|
|
<div class="container">
|
|
<p class="float-right">
|
|
<a href="#">Back to top</a>
|
|
</p>
|
|
<p>{% if site_conf.show_copyright %}© {% now "Y" %} {% endif %}</p>
|
|
{% if rolling_stock and site_conf.footer_short %}
|
|
{{ site_conf.footer_short | safe }}
|
|
{% else %}
|
|
{{ site_conf.footer | safe }}
|
|
{% endif %}
|
|
</div>
|
|
{% if site_conf.show_version and not map %}<div class="container">
|
|
<p class="small text-muted">Version: {{ site_conf.version }}</p>
|
|
</div>{% endif %}
|
|
</footer>
|
|
|