Add status line

This commit is contained in:
2023-06-07 02:03:08 +02:00
parent 3a6f831da8
commit 58ea1f8664
4 changed files with 16 additions and 9 deletions

Binary file not shown.

View File

@@ -30,19 +30,18 @@ tbody {
}
body {
padding-bottom: 20px;
padding-bottom: 25px;
padding-top: 60px;
background-color: #ffb878;
}
.navbar {
margin-bottom: 20px;
}
h2 {
margin-top: 20px;
.navbar-custom {
height: 20px;
}
.pie{
color: white;
font-size: 0.7rem;
padding-left: 0.5rem;
}

View File

@@ -33,6 +33,7 @@
<div class="container-fluid">
{% block content %}{% endblock %}
</div>
{% include "status.html" %}
</body>
{% block jscript %}
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>

View File

@@ -0,0 +1,7 @@
<nav class="navbar fixed-bottom navbar-dark bg-dark navbar-custom">
<ul class="navbar-nav mr-auto pie">
<p class="pie">
<small>Versión <b>1.00</b></small>
</p>
</ul>
</nav>