help.php 868 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * Help view.
  4. *
  5. * Contains the view layout and some code to present the data.
  6. *
  7. * @category View
  8. * @var Help_Page $page The page model.
  9. * @var int get_context()->get_game_mode() Game mode.
  10. */
  11. // TODO: Implement
  12. ?>
  13. <!DOCTYPE html>
  14. <html lang='en'>
  15. <head>
  16. <?=$page->generate_head()?>
  17. </head>
  18. <body>
  19. <header>
  20. <?php
  21. include __DIR__ . "/inc/header_app.php";
  22. ?>
  23. </header>
  24. <aside>
  25. </aside>
  26. <main>
  27. <section class='content'>
  28. <h2>
  29. Help
  30. </h2>
  31. <article>
  32. <!-- TODO: Add content -->
  33. Help page
  34. </article>
  35. </section>
  36. </main>
  37. <?php
  38. include __DIR__ . "/inc/footer.php";
  39. ?>
  40. </body>
  41. </html>