35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||
|
<meta name="description" content="Responsive Admin & Dashboard Template based on Bootstrap 5">
|
||
|
<meta name="author" content="AdminKit">
|
||
|
<meta name="keywords" content="adminkit, bootstrap, bootstrap 5, admin, dashboard, template, responsive, css, sass, html, theme, front-end, ui kit, web">
|
||
|
|
||
|
<link rel="shortcut icon" href="/static/assets/img/icons/icon-48x48.png" />
|
||
|
|
||
|
<title>
|
||
|
Flask AdminKit - {% block title %}{% endblock %} | AppSeed
|
||
|
</title>
|
||
|
|
||
|
<link href="/static/assets/css/app.css" rel="stylesheet">
|
||
|
|
||
|
<!-- Specific Page CSS goes HERE -->
|
||
|
{% block stylesheets %}{% endblock stylesheets %}
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
{% block content %}{% endblock content %}
|
||
|
|
||
|
{% include 'includes/scripts.html' %}
|
||
|
|
||
|
<!-- Specific Page JS goes HERE -->
|
||
|
{% block javascripts %}{% endblock javascripts %}
|
||
|
|
||
|
</body>
|
||
|
</html>
|