Prepend styles in layout
[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()->appendFile($this->basePath() . '/js/html5.js', 'text/javascript', array('conditional' => 'lt IE 9',))
18                                   ->appendFile($this->basePath() . '/js/jquery-1.7.2.min.js') ?>
19
20   </head>
21
22   <body>
23
24     <div class="navbar navbar-fixed-top">
25       <div class="navbar-inner">
26         <div class="container">
27           <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
28
29             <span class="icon-bar"></span>
30             <span class="icon-bar"></span>
31             <span class="icon-bar"></span>
32           </a>
33           <a class="brand" href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Skeleton Application') ?></a>
34           <div class="nav-collapse">
35             <ul class="nav">
36               <li class="active"><a href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Home') ?></a></li>
37             </ul>
38           </div><!--/.nav-collapse -->
39         </div>
40       </div>
41     </div>
42
43     <div class="container">
44
45       <?php echo $this->content; ?>
46
47       <hr>
48
49       <footer>
50         <p>&copy; 2005 - 2012 by Zend Technologies Ltd. <?php echo $this->translate('All rights reserved.') ?></p>
51       </footer>
52
53     </div> <!-- /container -->
54
55   </body>
56 </html>