thd/apps/frontend/templates/layout.php
author Gautier Thibault <gthibault@universcine.com>
Tue, 22 Sep 2009 16:40:38 +0200
changeset 35 94a1dc255022
permissions -rw-r--r--
Commit the all thd project created with the framework symfony

<!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>