Fixed copyright year in footer.
[zf2.biz/galerie.git] / module / Application / view / layout / layout.phtml
1 <?php
2 $this->headTitle()->setSeparator(' - ')
3                   ->setAutoEscape(false);
4
5 $basePath = $this->basePath();
6 $this->headLink()->appendStylesheet($basePath . '/css/bootstrap.min.css')
7                  ->appendStylesheet($basePath . '/css/style.css')
8                  ->appendStylesheet($basePath . '/css/bootstrap-responsive.min.css');
9
10 $this->headLink(array(
11             'rel'  => 'shortcut icon',
12             'type' => 'image/vnd.microsoft.icon',
13             'href' => $basePath . '/images/favicon.ico',
14         ));
15
16 // HTML5 shim, for IE6-8 support of HTML elements
17 $this->headScript()->appendFile($basePath . '/js/html5.js', 'text/javascript',
18     array('conditional' => 'lt IE 9',));
19
20 echo $this->doctype();
21 ?>
22
23 <html lang="en">
24   <head>
25     <meta charset="utf-8">
26     <?php echo $this->headTitle('ZF2 Skeleton Application') ?>
27
28     <?php echo $this->headMeta()->appendName('viewport', 'width=device-width, initial-scale=1.0') ?>
29
30     <!-- Le styles -->
31     <?php echo $this->headLink() ?>
32
33     <!-- Scripts -->
34     <?php echo $this->headScript() ?>
35
36   </head>
37
38   <body>
39
40     <div class="navbar navbar-fixed-top">
41       <div class="navbar-inner">
42         <div class="container">
43           <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
44
45             <span class="icon-bar"></span>
46             <span class="icon-bar"></span>
47             <span class="icon-bar"></span>
48           </a>
49           <a class="brand" href="<?php echo $this->url('home') ?>">Skeleton Application</a>
50           <div class="nav-collapse">
51             <ul class="nav">
52               <li class="active"><a href="<?php echo $this->url('home') ?>">Home</a></li>
53             </ul>
54           </div><!--/.nav-collapse -->
55         </div>
56       </div>
57     </div>
58
59     <div class="container">
60
61       <?php echo $this->content; ?>
62
63       <hr>
64
65       <footer>
66         <p>&copy; 2005 - 2012 by Zend Technologies Ltd. All rights reserved.</p>
67       </footer>
68
69     </div> <!-- /container -->
70
71   </body>
72 </html>