| 1234567891011121314151617181920212223 |
- <!doctype html>
- <html lang="<?php echo $_SESSION['LANGUAGE'];?>">
- <head>
- <?php require ''.$_SERVER['HESTIA'].'/web/templates/includes/title.html'; ?>
- <?php require ''.$_SERVER['HESTIA'].'/web/templates/includes/css.html'; ?>
- <?php require ''.$_SERVER['HESTIA'].'/web/templates/includes/js.html'; ?>
- <script>
- //
- // GLOBAL SETTINGS
- //
- var GLOBAL = {};
- GLOBAL.FTP_USER_PREFIX = 'admin_';
- GLOBAL.DB_USER_PREFIX = 'admin_';
- GLOBAL.DB_DBNAME_PREFIX = 'admin_';
- GLOBAL.AJAX_URL = '';
- </script>
- </head>
- <body class="body-<?=strtolower($TAB)?> lang-<?=$_SESSION['language']?>">
- <?php if (($_SESSION['DEBUG_MODE']) == "true" ) {?>
- <?php require ''.$_SERVER['HESTIA'].'/web/templates/debug.html'; ?>
- <?php } ?>
|