help.php 766 B

1234567891011121314151617181920212223242526272829303132333435
  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. <div id='content'>
  25. <div class='section'>
  26. <h3 class='section_title'>
  27. Help
  28. </h3>
  29. </div> <!-- .section -->
  30. </div> <!-- .content -->
  31. <?php
  32. include __DIR__ . "/inc/footer.php";
  33. ?>
  34. </body>
  35. </html>