thd/apps/frontend/templates/layout.php
changeset 35 94a1dc255022
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/thd/apps/frontend/templates/layout.php	Tue Sep 22 16:40:38 2009 +0200
@@ -0,0 +1,26 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <?php include_http_metas() ?>
+    <?php include_metas() ?>
+    <?php include_title() ?>    
+    <link rel="shortcut icon" href="/favicon.ico" />
+  </head>
+  <body>
+  	<div id="global-wrapper">
+  		<!--HEADER-->
+        <div id="header">
+		<?php include_partial('partials/header')?>
+		</div>
+   		<!--HEADER END-->
+   		<!--BODY-->
+    	<?php echo $sf_content ?>
+    	<!--BODY END-->
+    	<!--FOOTER-->
+    	<div id="footer">
+    	<?php include_partial('partials/footer')?>
+    	</div>
+    	<!--FOOTER END-->
+   	</div>
+  </body>
+</html>