BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

page.php 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. #declare(strict_types=1);
  3. $ENV = ENV::go();
  4. # Adapted from
  5. # https://www.w3docs.com/learn-html/semantic-elements-in-html5.html
  6. ?>
  7. <!doctype html>
  8. <html>
  9. <head>
  10. <title>
  11. <?= $ENV->SITE_NAME ?>
  12. </title>
  13. </head>
  14. <body>
  15. <header>
  16. <h1>
  17. <?= null # $HTML->logo()?>
  18. </h1>
  19. <nav>
  20. <?= null # $HTML->menu()?>
  21. <?= null # $HTML->search()?>
  22. <?= null # $HTML->account()?>
  23. </nav>
  24. </header>
  25. <main>
  26. <figure>
  27. <?= null # $HTML->toolbox()?>
  28. </figure>
  29. <section>
  30. <h2>
  31. <?= null # $Title?>
  32. </h2>
  33. <?= null # $Content?>
  34. </section>
  35. <section>
  36. <h2>
  37. <?= null # $Title?>
  38. </h2>
  39. <?= null # $Content?>
  40. </section>
  41. <aside>
  42. <h3>
  43. Sidebar
  44. </h3>
  45. <?= null # $HTML->info()?>
  46. <?= null # $HTML->stats()?>
  47. </aside>
  48. </main>
  49. <footer>
  50. <?= null # $HTML->footer()?>
  51. <address />
  52. <time />
  53. </footer>
  54. </body>
  55. </html>