header.html 750 B

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