Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / production / example_apps / zippy_maps / src / Template / Layout / error.ctp
1 <?php
2 /**
3  * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
4  * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
5  *
6  * Licensed under The MIT License
7  * For full copyright and license information, please see the LICENSE.txt
8  * Redistributions of files must retain the above copyright notice.
9  *
10  * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
11  * @link          http://cakephp.org CakePHP(tm) Project
12  * @since         0.10.0
13  * @license       http://www.opensource.org/licenses/mit-license.php MIT License
14  */
15 ?>
16 <!DOCTYPE html>
17 <html>
18 <head>
19     <?= $this->Html->charset() ?>
20     <title>
21         <?= $this->fetch('title') ?>
22     </title>
23     <?= $this->Html->meta('icon') ?>
24
25     <?= $this->Html->css('base.css') ?>
26     <?= $this->Html->css('cake.css') ?>
27
28     <?= $this->fetch('meta') ?>
29     <?= $this->fetch('css') ?>
30     <?= $this->fetch('script') ?>
31 </head>
32 <body>
33     <div id="container">
34         <div id="header">
35             <h1><?= __('Error') ?></h1>
36         </div>
37         <div id="content">
38             <?= $this->Flash->render() ?>
39
40             <?= $this->fetch('content') ?>
41         </div>
42         <div id="footer">
43             <?= $this->Html->link(__('Back'), 'javascript:history.back()') ?>
44         </div>
45     </div>
46 </body>
47 </html>