error.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * Error view.
  4. *
  5. * Contains the view layout and some code to present the data.
  6. *
  7. * @category View
  8. * @var Landing_Page $page The page model.
  9. */
  10. ?>
  11. <!DOCTYPE html>
  12. <html lang='en'>
  13. <head>
  14. <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
  15. <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
  16. <title><?=$page->title?></title>
  17. <link rel='shortcut icon' href='<?=$page->favicon?>'/>
  18. <!-- CSS files -->
  19. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>ui.css'/>
  20. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>error.css'/>
  21. <!-- Meta tags -->
  22. <meta name='robots' content='noindex nofollow'/>
  23. </head>
  24. <body>
  25. <?php
  26. include __DIR__ . "/inc/header.php";
  27. ?>
  28. <aside>
  29. </aside>
  30. <main>
  31. <section class='list'>
  32. <h2>
  33. Error
  34. </h2>
  35. <article>
  36. Error <?=$page->code?>: <?=$page->description?>
  37. </article>
  38. </section> <!-- #catalog -->
  39. </main>
  40. <?php
  41. include __DIR__ . "/inc/footer.php";
  42. ?>
  43. </body>
  44. </html>