main.php 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html lang="<?php echo $I18n->twoCharLang(); ?>">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  6. <link type="text/css" rel="stylesheet" href="view/98/ui/css/98.min.css" />
  7. <link type="text/css" rel="stylesheet" href="view/98/ui/css/style.css" />
  8. <meta name="author" content="https://www.bananas-playground.net/projekt/bibliotheca" />
  9. <title><?php echo $TemplateData['pageTitle']; ?> - Bibliotheca</title>
  10. </head>
  11. <body>
  12. <header>
  13. <?php require_once $ViewMenu; ?>
  14. </header>
  15. <div class="window" role="tabpanel">
  16. <main class="window-body">
  17. <?php require_once $ViewMessage; ?>
  18. <?php require_once $View; ?>
  19. </main>
  20. <footer class="status-bar">
  21. <p class="status-bar-field"><a href="https://www.bananas-playground.net/projekt/bibliotheca/" target=_blank>Bibliotheca</a></p>
  22. <p class="status-bar-field">&copy; 2018 - <?php echo date('Y'); ?></p>
  23. <p class="status-bar-field">Theme <a href="https://jdan.github.io/98.css/" target="_blank">98.css</a></p>
  24. </footer>
  25. </div>
  26. </body>
  27. </html>