Base for a static organization website

flash.ctp 666B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * @link http://cakephp.org CakePHP(tm) Project
  4. * @package app.View.Layouts
  5. * @since CakePHP(tm) v 0.10.0.1076
  6. */
  7. ?>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <?php echo $this->Html->charset(); ?>
  12. <title><?php echo $pageTitle; ?></title>
  13. <?php if (!Configure::read('debug')): ?>
  14. <meta http-equiv="Refresh" content="<?php echo $pause; ?>;url=<?php echo $url; ?>"/>
  15. <?php endif ?>
  16. <style><!--
  17. P { text-align:center; font:bold 1.1em sans-serif }
  18. A { color:#444; text-decoration:none }
  19. A:HOVER { text-decoration: underline; color:#44E }
  20. --></style>
  21. </head>
  22. <body>
  23. <p><a href="<?php echo $url; ?>"><?php echo $message; ?></a></p>
  24. </body>
  25. </html>