/halogy/application/errors/error_general.php

https://bitbucket.org/haloweb/halogy-1.0/ · PHP · 48 lines · 34 code · 14 blank · 0 comment · 0 complexity · 700de1514c35bb0f79560678eb1b0d18 MD5 · raw file

  1. <?php header("HTTP/1.1 404 Not Found"); ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html lang="en">
  4. <head>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <style type="text/css">
  7. body { font-size: 76%; font-family: "Lucida Grande", arial, san-serif; margin: 50px 0 0; color: #171717; }
  8. div.container { width: 600px; margin: 0 auto; padding: 0; clear: both; z-index: 0; }
  9. div#content { display: inline; float: left; width: 100%; padding: 40px 0 20px; clear: both; }
  10. div.content h1 { font-size: 3em; font-weight: normal; color: #171717; margin: 0 0 40px; }
  11. div.content h3 { font-size: 2em; font-weight: normal; color: #171717; margin: 0 0 30px; }
  12. div.content p { font-size: 1.2em; color: #999; margin: 0 0 30px; line-height: 1.4em; }
  13. div.content img { font-size: 1.2em; margin: 50px 0 20px; line-height: 1.4em; }
  14. div.content ul { padding: 0 0 0 16px; list-style-position: outside; }
  15. div.content a { color: #2194CD; text-decoration: none; }
  16. div.content a:hover { color: #bbb; }
  17. </style>
  18. <title><?php echo $heading; ?></title>
  19. </head>
  20. <body>
  21. <!--container-->
  22. <div id="container">
  23. <div id="main" class="narrow">
  24. <div id="content" class="content">
  25. <center>
  26. <h1>Slight problem...</h1>
  27. <?php echo $message; ?>
  28. <img src="http://static.halogy.com/images/halogy_device.jpg" alt="Halogy" />
  29. </center>
  30. <div class="spacer"><!-- --></div>
  31. </div><!--/main-->
  32. </div><!--/container-->
  33. </body>
  34. </html>