Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title><?php echo $this->fetch('title'); ?></title>
  5. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
  6. <!-- Include external files and scripts here (See HTML helper for more info.) -->
  7. <?php
  8. echo $this->fetch('meta');
  9. echo $this->fetch('css');
  10. echo $this->fetch('script');
  11. ?>
  12. </head>
  13. <body>
  14.  
  15. <!-- If you'd like some sort of menu to
  16. show up on all of your views, include it here -->
  17. <div id="header">
  18.     <div id="menu">...</div>
  19. </div>
  20.  
  21. <!-- Here's where I want my views to be displayed -->
  22. <?php echo $this->fetch('content'); ?>
  23.  
  24. <!-- Add a footer to each displayed page -->
  25. <div id="footer">...</div>
  26.  
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement