Advertisement
dragonbe

Layout template

May 9th, 2011
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2. // application/layouts/scripts/layout.phtml
  3. echo $this->doctype()
  4. ?>
  5. <html>
  6. <head>
  7. <?php
  8. echo $this->headTitle() . PHP_EOL;
  9. echo $this->headMeta() . PHP_EOL;
  10. echo $this->headLink() . PHP_EOL;
  11. echo $this->headScript() . PHP_EOL;
  12. echo $this->headStyle() . PHP_EOL;
  13. echo $this->jQuery() . PHP_EOL;
  14. ?>
  15. </head>
  16. <body>
  17. <?php echo $this->layout()->content; ?>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement