adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / zippy_maps / 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 $pageDescription = 'Maps Demonstrater for the Giant Surfing'
17
18 ?>
19 <!DOCTYPE html>
20 <html>
21 <head>
22     <?= $this->Html->charset() ?>
23     <meta name="viewport" content="width=device-width, initial-scale=1.0">
24     <title>
25         <?= $pageDescription ?>:
26         <?= $this->fetch('title') ?>
27     </title>
28     <?= $this->Html->meta('icon') ?>
29
30     <?= $this->Html->css('base.css') ?>
31     <?= $this->Html->css('cake.css') ?>
32
33     <?= $this->fetch('meta') ?>
34     <?= $this->fetch('css') ?>
35                 
36         <!-- added by fred for google maps api to work. -->
37         <script src="/js/jquery-3.2.1.min.js"></script>
38         
39         <!-- added by fred for loading the google marker clustering script. -->
40         <script src="/avmaps/js/markerclusterer.js"/></script>
41     
42     <?= $this->fetch('script') ?>
43     
44 </head>
45 <body>
46     <nav class="top-bar expanded" data-topbar role="navigation">
47         <ul class="title-area large-3 medium-4 columns">
48             <li class="name">
49                 <h1><a href=""><?= $this->fetch('title') ?></a></h1>
50             </li>
51         </ul>
52         <div class="top-bar-section">
53             <ul class="right">
54                 <li><a target="_blank" href="http://book.cakephp.org/3.0/">Documentation</a></li>
55                 <li><a target="_blank" href="http://api.cakephp.org/3.0/">API</a></li>
56             </ul>
57         </div>
58     </nav>
59     <?= $this->Flash->render() ?>
60     <div class="container clearfix">
61         <?= $this->fetch('content') ?>
62     </div>
63     <footer>
64     </footer>
65 </body>
66 </html>