PHP Structure
Overview of the PHP structure and layout
This guide provides a comprehensive overview of the PHP 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.
<? php include 'partials/main.php'; ?>
<head>
<? php includeFileWithVariables('partials/title-meta.php', array('title' => 'Ecommerce')); ?>
<? php include 'partials/head-css.php'; ?>
</head>
<?php include 'partials/body.php';?>
<!-- Begin page -->
<div id="layout-wrapper">
<?php include 'partials/menu.php';?>
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
<? php includeFileWithVariables('partials/page-title.php', array('title' => 'Ecommerce', 'pagetitle' => 'Dashboard')); ?>
</div><!-- container-fluid -->
</div><!-- End Page-content -->
<?php include 'partials/footer.php';?>
</div><!-- end main content-->
</div><!-- END layout-wrapper -->
<?php include 'partials/right-sidebar.php';?>
<?php include 'partials/vendor-scripts.php';?>
<!-- App js -->
<script src="../assets/js/app.js"></script>
</body>
</html>