Spaces:
Runtime error
Runtime error
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>{% block title %}Your Application{% endblock %}</title> | |
| <!-- AdminLTE CSS --> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/adminlte.min.css"> | |
| <!-- Optionally, you can add custom CSS files here --> | |
| {% block head %}{% endblock %} | |
| </head> | |
| <body class="{% block body_class %}{% endblock %}"> | |
| <div class="wrapper"> | |
| <!-- Header --> | |
| {% block header %} | |
| <!-- You can include a header here --> | |
| {% endblock %} | |
| <!-- Content Wrapper. Contains page content --> | |
| <div class="content-wrapper"> | |
| <!-- Main content --> | |
| <section class="content"> | |
| <div class="container-fluid"> | |
| {% block content %}{% endblock %} | |
| </div> | |
| </section> | |
| </div> | |
| <!-- Footer --> | |
| {% block footer %} | |
| <!-- You can include a footer here --> | |
| {% endblock %} | |
| </div> | |
| <!-- AdminLTE JS --> | |
| <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/adminlte.min.js"></script> | |
| <!-- Optionally, you can add custom JS files here --> | |
| {% block scripts %}{% endblock %} | |
| </body> | |
| </html> |