layout.html 957 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
  8. <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
  9. <title>{{ title }}</title>
  10. </head>
  11. <body>
  12. <div class="container">
  13. {% block body %}{% endblock %}
  14. </div>
  15. <!-- copyright section -->
  16. <div class="copyright">
  17. <div class="container">
  18. <div class="row">
  19. <div class="col-md-12 col-sm-12">
  20. <p>Copyright &copy; <?php echo date("Y"); ?> Mercados Electricos de Centroamérica, S.A. de C.V.</p>
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. </body>
  26. </html>