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