YII Structure

Overview of the YII structure and layout

This guide provides a comprehensive overview of the YII 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 echo $this->render('partials/main'); ?> <head> <?php echo $this->render('partials/title-meta', array('title'=>'Starter Page')); ?> <?php echo $this->render('partials/head-css'); ?> </head> <?php echo $this->render('partials/body'); ?> <!-- Begin page --> <div id="layout-wrapper"> <?php echo $this->render('partials/menu'); ?> <!-- ============================================================== --> <!-- Start right Content here --> <!-- ============================================================== --> <div class="main-content"> <div class="page-content"> <div class="container-fluid"> <?php echo $this->render('partials/page-title', array('title'=>'Pages','sub_title'=>'Starter Page')); ?> </div><!-- container-fluid --> </div><!-- End Page-content --> <?php echo $this->render('partials/footer'); ?> <?php echo $this->render('partials/scroll-to-top'); ?> </div><!-- end main content--> </div><!-- END layout-wrapper --> <?php echo $this->render('partials/right-sidebar'); ?> <?php echo $this->render('partials/vendor-scripts'); ?> <!-- App js --> <script src="../assets/js/app.js"></script> </body> </html>
© Aquiry.
Crafted & Design with by Codebucks