adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / shared_calendar / src / Template / Layout / default.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 $cakeDescription = 'CakePHP: the rapid development php framework';
17 ?>
18 <!DOCTYPE html>
19 <html>
20 <head>
21     <?= $this->Html->charset() ?>
22     <meta name="viewport" content="width=device-width, initial-scale=1.0">
23     <title>
24         <?= $cakeDescription ?>:
25         <?= $this->fetch('title') ?>
26     </title>
27     <?= $this->Html->meta('icon') ?>
28
29     <?= $this->Html->css('base.css') ?>
30     <?= $this->Html->css('cake.css') ?>
31
32     <?= $this->fetch('meta') ?>
33     <?= $this->fetch('css') ?>
34     <?= $this->fetch('script') ?>
35 </head>
36 <body>
37     <nav class="top-bar expanded" data-topbar role="navigation">
38         <ul class="title-area large-3 medium-4 columns">
39             <li class="name">
40                 <h1><a href=""><?= $this->fetch('title') ?></a></h1>
41             </li>
42         </ul>
43         <div class="top-bar-section">
44             <ul class="right">
45                 <li><a target="_blank" href="http://book.cakephp.org/3.0/">Documentation</a></li>
46                 <li><a target="_blank" href="http://api.cakephp.org/3.0/">API</a></li>
47             </ul>
48         </div>
49     </nav>
50     <?= $this->Flash->render() ?>
51     <div class="container clearfix">
52         <?= $this->fetch('content') ?>
53     </div>
54     <footer>
55     </footer>
56 </body>
57 </html>