| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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>
- <aside>
- </aside>
- <main>
- <section class='content'>
- <h2>
- Help
- </h2>
- <article>
- <!-- TODO: Add content -->
- Help page
- </article>
- </section>
- </main>
- <?php
- include __DIR__ . "/inc/footer.php";
- ?>
- </body>
- </html>
|