Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // application/layouts/scripts/layout.phtml
- echo $this->doctype()
- ?>
- <html>
- <head>
- <?php
- echo $this->headTitle() . PHP_EOL;
- echo $this->headMeta() . PHP_EOL;
- echo $this->headLink() . PHP_EOL;
- echo $this->headScript() . PHP_EOL;
- echo $this->headStyle() . PHP_EOL;
- echo $this->jQuery() . PHP_EOL;
- ?>
- </head>
- <body>
- <?php echo $this->layout()->content; ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement