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