r
{{> partials/sidebar }}The PHP 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.
<?php include 'partials/main.php'; ?>
<head>
<?php includeFileWithVariables('partials/title-meta.php', array('title' => 'Starter')); ?>
<?php include 'partials/head-css.php'; ?>
</head>
<?php include 'partials/body.php'; ?>
<?php include 'partials/topbar.php'; ?>
<?php include 'partials/sidebar.php'; ?>
<?php include 'partials/page-wrapper.php'; ?>
<div class="container-fluid">
<?php includeFileWithVariables('partials/page-heading.php', array('title' => 'Starter', 'sub_title' => 'UI')); ?>
<?php include 'partials/footer.php'; ?>
</div>
</div>
</div>
<?php include 'partials/vendor-scripts.php'; ?>
<script type="module" src="../assets/js/main.js"></script>
</body>
</html>