Browse Source

Quito la clase footer

politica
Celestino Rey 1 year ago
parent
commit
518a9276a7
4 changed files with 11 additions and 22 deletions
  1. +1
    -1
      LyricsPy/K8S/Makefile
  2. +7
    -2
      LyricsPy/servicios/lyrics/templates/_footer.html
  3. +2
    -4
      LyricsPy/servicios/lyrics/templates/base.html
  4. +1
    -15
      LyricsPy/servicios/lyrics/templates/letras.html

+ 1
- 1
LyricsPy/K8S/Makefile View File

@ -1,4 +1,4 @@
export IMG_VERSION = 6.3
export IMG_VERSION = 6.4
imagen: imagen:
cd ../servicios; make cd ../servicios; make


+ 7
- 2
LyricsPy/servicios/lyrics/templates/_footer.html View File

@ -1,5 +1,10 @@
<footer class="app-auth-footer">
<!--
La clase app-auth-footer hace algo que implica que el texto quede
en la parte de abajo de la ventana con el tamaño que esta tenga en el momento
de renderizar el texto. En algunos casos esto causa un efecto no deseado. Por ejemplo en letras.html
-->
<!--<footer class="app-auth-footer">-->
<div class="container text-center py-3"> <div class="container text-center py-3">
<small class="copyright">(c) <a class="app-link" href="http://reymota.es" target="_blank">Celestino Rey</a></small> <small class="copyright">(c) <a class="app-link" href="http://reymota.es" target="_blank">Celestino Rey</a></small>
</div> </div>
</footer><!--//app-auth-footer-->
<!--</footer>//app-auth-footer-->

+ 2
- 4
LyricsPy/servicios/lyrics/templates/base.html View File

@ -8,10 +8,9 @@
<div class="app-content pt-3 p-md-3 p-lg-4"> <div class="app-content pt-3 p-md-3 p-lg-4">
{% block content %}{% endblock %} {% block content %}{% endblock %}
</div><!--//app-content--> </div><!--//app-content-->
{% include("_footer.html") %} {% include("_footer.html") %}
</div><!--//app-wrapper--> </div><!--//app-wrapper-->
<!-- Javascript --> <!-- Javascript -->
@ -28,7 +27,6 @@
<!-- Page Specific JS --> <!-- Page Specific JS -->
<script src="{{ url_for('static', filename='js/app.js') }}"></script> <script src="{{ url_for('static', filename='js/app.js') }}"></script>
</body>
</body>
</html> </html>

+ 1
- 15
LyricsPy/servicios/lyrics/templates/letras.html View File

@ -61,21 +61,7 @@
</table> </table>
</div><!--//table-responsive--> </div><!--//table-responsive-->
</div><!--//app-card-body--> </div><!--//app-card-body-->
</div><!--//app-card-->
<nav class="app-pagination">
<ul class="pagination justify-content-center">
<li class="page-item disabled">
<a class="page-link" href="#" tabindex="-1" aria-disabled="true">Previous</a>
</li>
<li class="page-item active"><a class="page-link" href="#">1</a></li>
<li class="page-item"><a class="page-link" href="#">2</a></li>
<li class="page-item"><a class="page-link" href="#">3</a></li>
<li class="page-item">
<a class="page-link" href="#">Next</a>
</li>
</ul>
</nav><!--//app-pagination-->
</div><!--//app-card-->
</div><!--//tab-pane--> </div><!--//tab-pane-->
</div><!--//tab-content--> </div><!--//tab-content-->
</div><!--//container-fluid--> </div><!--//container-fluid-->

Loading…
Cancel
Save