layout.php 827 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <?php
  5. include_http_metas();
  6. include_metas();
  7. ?>
  8. <title>
  9. <?php $title = sfContext::getInstance()->getResponse()->getTitle() ?>
  10. <?php if(!empty($title)): ?>
  11. <?php echo $title.' | ' ?>
  12. <?php endif ?>
  13. Katao, Réseau de distribution bio et local - Coop du Tilleul</title>
  14. <?php
  15. use_javascript('main.js');
  16. use_javascript('ie-hover-pack.js');
  17. ?>
  18. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  19. <link rel="shortcut icon" href="/favicon.ico" />
  20. <!--[if lt IE 7]><link rel="stylesheet" type="text/css" href="/css/lt7.css" /><![endif]-->
  21. </head>
  22. <body>
  23. <?php echo $sf_content ?>
  24. </body>
  25. </html>