template default en HTML5
[mtweb] / mw / app / out / default / compte.php
index e938159..3e0bb1f 100644 (file)
@@ -1,17 +1,15 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
+<!doctype html>
+<html>
   <head>
-    <?php require $this->out_file("views/head.php"); ?>
-    <script type="text/javascript" src="<?php echo $this->path("mw_path"); ?>libs/tiny_mce/tiny_mce.js"></script>
-    <script type="text/javascript" src="<?php echo $this->path("mw_path"); ?>libs/tiny_mce/plugins/tinybrowser/tb_tinymce.js.php"></script>
+<?php require $this->out_file("views/head.php"); ?>
   </head>
   <body>
 
-    <div id="header">
+    <header id="main_header">
       <div class="content">
 <?php require $this->out_file("views/header.php"); ?>
      </div>
-    </div>
+    </header>
 
     <div id="main">
       <div class="content">
 
         <div id="center">
 <?php require $this->out_file("views/messages.php"); ?>
-<?php
-
-  if($layout["content"] && $this->out_file_exists($layout["content"])) require $this->out_file($layout["content"]);
-
-?>
+<?php if($layout["content"] && $this->out_file_exists($layout["content"])) require $this->out_file($layout["content"]); ?>
         </div>
 
-        <div class="clear"><!-- --></div>
-
       </div>
     </div>
 
-    <div id="footer">
+    <footer id="main_footer">
       <div class="content">
 <?php require $this->out_file("views/footer.php"); ?>
      </div>
-    </div>
+    </footer>
 
   </body>
 </html>