52285ecde9656fbaed8a3c50a07a777bd8b28acd
[zf2.biz/application_blanche.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/jquery-1.7.2.min.js') ?>
19     </head>
20     <body>
21         <div class="navbar navbar-fixed-top">
22             <div class="navbar-inner">
23                 <div class="container">
24                     <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
25                         <span class="icon-bar"></span>
26                         <span class="icon-bar"></span>
27                         <span class="icon-bar"></span>
28                     </a>
29                     <a class="brand" href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Skeleton Application') ?></a>
30                     <div class="nav-collapse">
31                         <ul class="nav">
32                             <li class="active"><a href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Home') ?></a></li>
33                         </ul>
34                     </div><!--/.nav-collapse -->
35                 </div>
36             </div>
37         </div>
38         <div class="container">
39             <?php echo $this->content; ?>
40             <hr>
41             <footer>
42                 <p>&copy; 2005 - 2012 by Zend Technologies Ltd. <?php echo $this->translate('All rights reserved.') ?></p>
43             </footer>
44         </div> <!-- /container -->
45         <?php echo $this->inlineScript() ?>
46     </body>
47 </html>