예제 #1
0
 /**
  * PAGE: index
  * This method handles what happens when you move to http://yourproject/home/index (which is the default page btw)
  */
 public function index()
 {
     // check if user has an active menu
     Authenticate::menuIsActive();
     // header
     require APP_PATH . 'views/templates/header_alt.php';
     // navbar
     // <body>
     // <container>
     // <navbar></navbar>
     require APP_PATH . 'views/templates/navbar_alt.php';
     // sidebar
     // <row>
     // <col-sm-3></end-col>
     require APP_PATH . 'views/recipes/default/sidebar.php';
     // content
     // <col-sm-9></end-col>
     require APP_PATH . 'views/recipes/default/content.php';
     // footer
     // <footer></footer>
     // </container>
     // </body>
     // </html>
     require APP_PATH . 'views/templates/footer.php';
 }