123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
-
- $ENV = ENV::go();
-
- # Adapted from
- # https://www.w3docs.com/learn-html/semantic-elements-in-html5.html
- ?>
-
- <!doctype html>
- <html>
-
- <head>
- <title>
- <?= $ENV->SITE_NAME ?>
- </title>
- </head>
-
- <body>
-
- <header>
- <h1>
- <?= null # $HTML->logo()?>
- </h1>
-
- <nav>
- <?= null # $HTML->menu()?>
- <?= null # $HTML->search()?>
- <?= null # $HTML->account()?>
- </nav>
- </header>
-
- <main>
- <figure>
- <?= null # $HTML->toolbox()?>
- </figure>
-
- <section>
- <h2>
- <?= null # $Title?>
- </h2>
-
- <?= null # $Content?>
- </section>
-
- <section>
- <h2>
- <?= null # $Title?>
- </h2>
-
- <?= null # $Content?>
- </section>
-
- <aside>
- <h3>
- Sidebar
- </h3>
-
- <?= null # $HTML->info()?>
- <?= null # $HTML->stats()?>
- </aside>
- </main>
-
- <footer>
- <?= null # $HTML->footer()?>
- <address />
- <time />
- </footer>
-
-
- </body>
-
- </html>
|