-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
62 lines (55 loc) · 1.88 KB
/
index.php
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
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html class=" js csstransforms3d"><head>
<?php
session_start();
if(!isset($_SESSION["code"])){header("location:login.php");}
include 'config.php';
$sitename = constant("SITE_NAME");
$siteico = constant("SITE_ICO");
?>
<meta charset="utf-8">
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><?php echo $sitename; ?></title>
<link rel="shortcut icon" href="<?php echo $siteico ?>">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/page.css">
<!--[if lte IE 8]>
<link href="css/ie8.css" rel="stylesheet" type="text/css"/>
<![endif]-->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/modernizr.js"></script>
<!--[if IE]>
<script src="http://libs.useso.com/js/html5shiv/3.7/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<div class="superWrap clearfix" style="height: 781px;">
<!--side S-->
<div class="super-side-menu">
<iframe src="public_left.php" width="205" height="100%" marginheight="0" marginwidth="0" frameborder="0" scrolling="no"></iframe>
</div>
<!--side E-->
<!--content S-->
<div class="superContent">
<div class="super-header super-header2">
<iframe src="public_header.php" id="Pubheader" name="Pubheader" width="100%" marginheight="0" marginwidth="0" frameborder="0" scrolling="no"></iframe>
</div>
<!--header-->
<div class="superCtab superCtabBot" style="height: 695px;">
<iframe src="first.php" id="Mainindex" name="Mainindex" width="100%" height="100%" marginheight="0" marginwidth="0" frameborder="0"></iframe>
</div>
<!--main-->
</div>
<!--content E-->
</div>
<script>
window.onresize = function(){
var winH=$(window).height();
var headH=$('.super-header').height();
$('.superWrap').height(winH);
$('.superCtabBot').height(winH-headH);
};
$(window).resize();
</script>
</body></html>