Folder Structure

PHP file structure
<?php echo $this->render('partials/main'); ?> <head> <?php echo $this->render('partials/title-meta', array('title' => 'Calendar')); ?> <?php echo $this->render('partials/head-css'); ?> </head> <?php echo $this->render('partials/body'); ?> <div class="group-data-[sidebar-size=sm]:min-h-sm group-data-[sidebar-size=sm]:relative"> <?php echo $this->render('partials/menu'); ?> <div class="relative min-h-screen group-data-[sidebar-size=sm]:min-h-sm"> <?php echo $this->render('partials/page-wrapper'); ?> <div class="container-fluid group-data-[content=boxed]:max-w-boxed mx-auto"> <?php echo $this->render('partials/page-title', array('pagetitle' => 'Apps', 'title' => 'Calendar')); ?> </div> <!-- container-fluid --> </div> <!-- End Page-content --> <?php echo $this->render('partials/footer') ?> </div> </div> <!-- end main content --> <?php echo $this->render('partials/customizer') ?> <?php echo $this->render('partials/vendor-scripts') ?> <!-- App js --> <script src="../assets/js/app.js"></script> </body> </html>