error.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. * @var int get_context()->get_game_mode() Game mode.
  10. */
  11. ?>
  12. <!DOCTYPE html>
  13. <html lang='en'>
  14. <head>
  15. <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
  16. <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
  17. <title><?=$page->title?></title>
  18. <link rel='shortcut icon' href='<?=$page->favicon?>'/>
  19. <!-- CSS files -->
  20. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>ui.css'/>
  21. <?php
  22. if (get_context()->get_game_mode() == GAME_MODE_ID::RTA){
  23. ?>
  24. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>ui-rta.css'/>
  25. <?php
  26. }
  27. ?>
  28. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>error.css'/>
  29. <!-- Meta tags -->
  30. <meta name='robots' content='noindex nofollow'/>
  31. </head>
  32. <body>
  33. <?php
  34. include __DIR__ . "/inc/header.php";
  35. ?>
  36. <aside>
  37. </aside>
  38. <main>
  39. <section class='list'>
  40. <h2>
  41. Error
  42. </h2>
  43. <article>
  44. Error <?=$page->code?>: <?=$page->description?>
  45. </article>
  46. </section> <!-- #catalog -->
  47. </main>
  48. <?php
  49. include __DIR__ . "/inc/footer.php";
  50. ?>
  51. </body>
  52. </html>