Aethetic improvements and marketing jargon
[zf2.biz/galerie.git] / module / Application / views / layouts / layout.phtml
index 5a1e9ea..6685a64 100644 (file)
@@ -1,15 +1,57 @@
 <?php echo $this->doctype() ?>
 
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<html lang="en">
+  <head>
+    <meta charset="utf-8">
     <?php echo $this->headTitle() ?>
+
     <?php echo $this->headMeta() ?>
-    <?php echo $this->headLink() ?>
+
+    <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
+    <!--[if lt IE 9]>
+      <?php echo $this->placeholder('html5js') ?>
+
+    <![endif]-->
+
     <?php echo $this->headScript() ?>
 
-</head>
-<body>
-<?php echo $this->raw('content'); ?>
-</body>
+    <!-- Le styles -->
+    <?php echo $this->headLink() ?>
+    
+    <style type="text/css">
+      body {
+        padding-top: 60px;
+      }
+    </style>
+
+    <!-- Le fav and touch icons -->
+    <?php echo $this->placeholder('favicon') ?>
+
+  </head>
+
+  <body>
+
+    <div class="topbar">
+      <div class="fill">
+        <div class="container">
+          <a class="brand" href="<?php echo $this->url('home') ?>">ZF2 Skeleton Application</a>
+
+          <ul class="nav">
+            <li class="active"><a href="<?php echo $this->url('home') ?>">Home</a></li>
+          </ul>
+        </div>
+      </div>
+
+    </div>
+
+    <div class="container">
+      <?php echo $this->raw('content'); ?>
+
+      <footer>
+        <p>&copy; 2006 - <?php echo date('Y') ?> by Zend Technologies Ltd. All rights reserved.</p>
+      </footer>
+
+    </div> <!-- /container -->
+
+  </body>
 </html>