error.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. /**
  3. * Error view.
  4. *
  5. * Contains the view layout and some code to present the data.
  6. *
  7. * @author Iñigo Valentin <i@inigovalentin.com>
  8. * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3
  9. * @package SWDB
  10. * @category View
  11. * @property Error_Page $page The page model.
  12. * @var Error_Page $page The page model.
  13. */
  14. ?>
  15. <!DOCTYPE html>
  16. <html lang='en'>
  17. <head>
  18. <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
  19. <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
  20. <title><?=$page->get_title()?></title>
  21. <link rel='shortcut icon' href='<?=$page->get_favicon()?>'/>
  22. <!-- CSS files -->
  23. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>ui.css'/>
  24. <?php
  25. if (get_context()->get_game_mode() == GAME_MODE_ID::RTA){
  26. ?>
  27. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>ui-rta.css'/>
  28. <?php
  29. }
  30. ?>
  31. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>error.css'/>
  32. <!-- Meta tags -->
  33. <meta name='robots' content='noindex nofollow'/>
  34. </head>
  35. <body>
  36. <?php
  37. include __DIR__ . "/inc/header.php";
  38. ?>
  39. <aside>
  40. </aside>
  41. <main>
  42. <section class='list'>
  43. <h2>
  44. Error
  45. </h2>
  46. <article>
  47. Error <?=$page->get_code()?>: <?=$page->get_message()?>
  48. </article>
  49. </section> <!-- #catalog -->
  50. </main>
  51. <?php
  52. include __DIR__ . "/inc/footer.php";
  53. ?>
  54. </body>
  55. </html>