More work on the UI

This commit is contained in:
2022-04-09 22:40:08 +02:00
parent 440c640d9f
commit c1315332e3
21 changed files with 306 additions and 272 deletions

View File

@@ -1,17 +1,14 @@
<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 %}&copy; {% 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>
<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>