|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}Your Application{% endblock %}</title>
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/adminlte@3.1.0/dist/css/adminlte.min.css">
|
|
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body class="{% block body_class %}{% endblock %}">
|
|
<div class="wrapper">
|
|
|
|
{% block header %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<section class="content">
|
|
<div class="container-fluid">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
|
|
{% block footer %}
|
|
|
|
{% endblock %}
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/adminlte@3.1.0/dist/js/adminlte.min.js"></script>
|
|
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html> |