| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Help view.
- *
- * Contains the view layout and some code to present the data.
- *
- * @category View
- * @var Help_Page $page The page model.
- * @var int get_context()->get_game_mode() Game mode.
- */
- // TODO: Implement
- ?>
- <!DOCTYPE html>
- <html lang='en'>
- <head>
- <?=$page->generate_head()?>
- </head>
- <body>
- <header>
- <?php
- include __DIR__ . "/inc/header_app.php";
- ?>
- </header>
- <div id='content'>
- <div class='section'>
- <h3 class='section_title'>
- Help
- </h3>
- </div> <!-- .section -->
- </div> <!-- .content -->
- <?php
- include __DIR__ . "/inc/footer.php";
- ?>
- </body>
- </html>
|