r
{{> partials/sidebar }}The Flask structure of the Evohus Admin Panel is organized for clarity, flexibility, and scalability. Each major layout section — header, sidebar, content, and footer — is structured using clean and semantic markup. This modular setup allows developers to easily customize or replace individual sections without affecting others.
{% extends "partials/layouts/main.html" %}
{% block meta %}
{% with title="Starter" %}
{% include "partials/title-meta.html" %}
{% endwith %}
{% endblock %}
{% block css %}
<!-- Virtual Select -->
<link rel="stylesheet" href="/static/assets/libs/virtual-select-plugin/virtual-select.min.css">
{% endblock css %}
{% block content %}
{% with title="Starter" ,sub_title="Pages" %}
{% include "partials/page-heading.html" %}
{% endwith %}
<div class="container-fluid">
{% endblock content %}
{% block js %}
<script type="module" src="/static/assets/js/main.js"></script>
{% endblock js %}