forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
23 lines (21 loc) · 742 Bytes
/
header.html
File metadata and controls
23 lines (21 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="<?=$_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/top_js.html'; ?>
<script>
//
// GLOBAL SETTINGS
//
var GLOBAL = {};
GLOBAL.FTP_USER_PREFIX = '';
GLOBAL.DB_USER_PREFIX = '';
GLOBAL.DB_DBNAME_PREFIX = '';
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/pages/debug_panel.html'; ?>
<?php } ?>