Moved javascript down, after css. Best practice.
[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() ?>
7
8     <?php echo $this->headMeta() ?>
9
10     <!-- Le styles -->
11     <?php echo $this->headLink() ?>
12     
13     <style type="text/css">
14       body {
15         padding-top: 60px;
16       }
17     </style>
18
19     <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
20     <!--[if lt IE 9]>
21       <?php echo $this->placeholder('html5js') ?>
22     <![endif]-->
23
24     <?php echo $this->headScript() ?>
25
26     <!-- Le fav and touch icons -->
27     <?php echo $this->placeholder('favicon') ?>
28
29   </head>
30
31   <body>
32
33     <div class="topbar">
34       <div class="fill">
35         <div class="container">
36           <a class="brand" href="<?php echo $this->url('home') ?>">ZF2 Skeleton Application</a>
37
38           <ul class="nav">
39             <li class="active"><a href="<?php echo $this->url('home') ?>">Home</a></li>
40           </ul>
41         </div>
42       </div>
43
44     </div>
45
46     <div class="container">
47       <?php echo $this->raw('content'); ?>
48
49       <footer>
50         <p>&copy; 2006 - <?php echo date('Y') ?> by Zend Technologies Ltd. All rights reserved.</p>
51       </footer>
52
53     </div> <!-- /container -->
54
55   </body>
56 </html>