header.php 693 B

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