Flask Structure
Overview of the Flask structure and layout
This guide provides a comprehensive overview of the Flask structure used in the Aquiry admin template. It explains how the layout is organized, the role of each partial, and how components are structured to create a fully responsive and modular dashboard interface.
<!DOCTYPE html>
<html lang="en" dir="ltr" data-bs-theme="light" data-layout="vertical" data-content-width="default"
data-sidebar="default" data-topbar="light" data-sidebar-color="light">
<head>
{% block meta %} {% endblock meta %}
{% block css %} {% endblock css %}
{% include "partials/head-css.html" %}
</head>
<body>
<!-- Begin page -->
<div id="layout-wrapper">
{% include "partials/menu.html" %}
{% block wraper %}
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
{% endblock wraper %}
{% block content %} {% endblock content %}
</div>
{% include "partials/footer.html" %}
{% include "partials/scroll-to-top.html" %}
</div>
{% include "partials/right-sidebar.html" %}
{% include "partials/vendor-scripts.html" %}
{% block js %} {% endblock js %}
</body>
</html>