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

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