forked from tension/NeWorld-For-DirectAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
56 lines (53 loc) · 2.1 KB
/
header.html
File metadata and controls
56 lines (53 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|LF_STANDARD|
|HTM_CONFIG|
<!DOCTYPE html>
<!--
_/_/_/_/_/ _/_/_/_/ _/ _/ _/_/_/ _/_/_/ _/_/ _/ _/
_/ _/ _/_/ _/ _/ _/ _/ _/ _/_/ _/
_/ _/_/_/ _/ _/ _/ _/_/ _/ _/ _/ _/ _/ _/
_/ _/ _/ _/_/ _/ _/ _/ _/ _/ _/_/
_/ _/_/_/_/ _/ _/ _/_/_/ _/_/_/ _/_/ _/ _/
-->
<html>
<head>
<meta charset="|LANG_ENCODING|" />
<meta name="author" content="tension,tension{at}me.com" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>|HOSTNAME| - ELINKHOST - |DEAMONNAME| v|VERSION|</title>
<script type="text/javascript" src="//cdn.staticfile.org/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript" src="/IMG_MAINJS"></script>
<link href="//cdn.staticfile.org/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet">
<link href="//cdn.staticfile.org/pure/0.4.2/pure-min.css" rel="stylesheet">
<script type="text/javascript">
//timer for auto-logout
function log_me_out() {
location.href = '/CMD_LOGOUT';
}
setTimeout('log_me_out();', |SESSION_MINUTES|*60*1000);
// done with preload code
</script>
<link href="/CSS_STYLE" type="text/css" rel="stylesheet" />
</head>
<body |BODY|>
<!-- Header START -->
<header>
<div class="wrapper-full">
<h1><a class="logo" href="/|HOME_MEMORY|" title="HOME">ELINKHOST</a></h1>
<button class="navbar-toggle" type="button">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<nav>
<ul>
<li><a href="/CMD_FILE_MANAGER"><i class="fa fa-tasks"></i> |LANG_FILES|</a></li>
<li><a href="/HTM_PASSWD"><i class="fa fa-cog"></i> |LANG_PASSWORD|</a></li>
<li class="hidden"><a href="#">|LANG_NEWANN|</a></li>
<li class="hidden"><a href="#">|LANG_FEEDBACK|</a></li>
|HTM_MENU_USER|
<li><a href="/CMD_LOGOUT"><i class="fa fa-sign-out"></i> |LANG_LOGOUT|</a></li>
</ul>
</nav>
</div>
</header>