Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2. require './Core/autoloader.php';
  3. $page = new \BarradellJohns\Core\GeneralPage();
  4. $page->startBody();
  5. ?>
  6.  
  7. <h1>Hi lmao im the body</h1>
  8. <?php
  9. $page->endBody();
  10. $page->startSideBar();
  11. ?>
  12.  
  13. <h2>Lmao im the sidebar</h2>
  14.  
  15. <?php
  16. $page->endSideBar();
  17. echo $page->render('./Core/Templates/generalPage.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement