layout.phtml 907 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="initial-scale=1.0">
  6. <link rel="icon" type="image/x-icon" href="<?php echo Url::display ('/favicon.ico'); ?>" />
  7. <link rel="icon" type="image/png" href="<?php echo Url::display ('/favicon.ico'); ?>" />
  8. <?php echo self::headTitle (); ?>
  9. <?php echo self::headStyle (); ?>
  10. <script>//<![CDATA[
  11. <?php $this->renderHelper ('../javascript/main'); ?>
  12. //]]></script>
  13. <?php echo self::headScript (); ?>
  14. </head>
  15. <body>
  16. <?php $this->partial ('header'); ?>
  17. <div id="global">
  18. <?php $this->render (); ?>
  19. </div>
  20. <?php $this->partial ('persona'); ?>
  21. <?php if (isset ($this->notification)) { ?>
  22. <div class="notification <?php echo $this->notification['type']; ?>">
  23. <?php echo $this->notification['content']; ?>
  24. <a class="close" href=""><i class="icon i_close"></i></a>
  25. </div>
  26. <?php } ?>
  27. </body>
  28. </html>