6efc2671273ffa685f109ac2392adc5fa4234467
[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 '. $this->translate('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                         ->prependStylesheet($this->basePath() . '/css/bootstrap-responsive.min.css')
13                         ->prependStylesheet($this->basePath() . '/css/style.css')
14                         ->prependStylesheet($this->basePath() . '/css/bootstrap.min.css') ?>
15
16         <!-- Scripts -->
17         <?php echo $this->headScript()->prependFile($this->basePath() . '/js/html5.js', 'text/javascript', array('conditional' => 'lt IE 9',))
18                                       ->prependFile($this->basePath() . '/js/bootstrap.min.js')
19                                       ->prependFile($this->basePath() . '/js/jquery.min.js') ?>
20
21     </head>
22     <body>
23         <div class="navbar navbar-inverse 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                         <span class="icon-bar"></span>
28                         <span class="icon-bar"></span>
29                         <span class="icon-bar"></span>
30                     </a>
31                     <a class="brand" href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Skeleton Application') ?></a>
32                     <div class="nav-collapse collapse">
33                         <ul class="nav">
34                             <li class="active"><a href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Home') ?></a></li>
35                         </ul>
36                     </div><!--/.nav-collapse -->
37                 </div>
38             </div>
39         </div>
40         <div class="container">
41             <?php echo $this->content; ?>
42             <hr>
43             <footer>
44                 <p>&copy; 2005 - 2012 by Zend Technologies Ltd. <?php echo $this->translate('All rights reserved.') ?></p>
45             </footer>
46         </div> <!-- /container -->
47         <?php echo $this->inlineScript() ?>
48     </body>
49 </html>