header.html 723 B

12345678910111213141516171819202122232425262728
  1. <!doctype html>
  2. <html class="no-js" lang="<?=$_SESSION['LANGUAGE']?>">
  3. <head>
  4. <?php
  5. require $_SERVER['HESTIA'] . '/web/templates/includes/title.html';
  6. require $_SERVER['HESTIA'] . '/web/templates/includes/css.html';
  7. require $_SERVER['HESTIA'] . '/web/templates/includes/top_js.html';
  8. ?>
  9. <script>
  10. <?php
  11. //
  12. // GLOBAL SETTINGS
  13. //
  14. ?>
  15. var GLOBAL = {};
  16. GLOBAL.FTP_USER_PREFIX = '';
  17. GLOBAL.DB_USER_PREFIX = '';
  18. GLOBAL.DB_DBNAME_PREFIX = '';
  19. GLOBAL.AJAX_URL = '';
  20. </script>
  21. </head>
  22. <body class="body-<?=strtolower($TAB)?> lang-<?=$_SESSION['language']?>">
  23. <?php
  24. if (($_SESSION['DEBUG_MODE']) == "true" ) {
  25. require $_SERVER['HESTIA'] . '/web/templates/pages/debug_panel.html';
  26. }