Spaces:
Sleeping
Sleeping
File size: 1,286 Bytes
62aa71b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Your Application{% endblock %}</title>
<!-- AdminLTE CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/adminlte@3.1.0/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/adminlte@3.1.0/dist/js/adminlte.min.js"></script>
<!-- Optionally, you can add custom JS files here -->
{% block scripts %}{% endblock %}
</body>
</html> |