-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmain.php
More file actions
77 lines (70 loc) · 1.94 KB
/
main.php
File metadata and controls
77 lines (70 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
$host = $_SERVER['HTTP_HOST'];
$uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
$extra = 'index.php';
include 'vars.php';
$page = $_GET["page"];
if ($page == NULL) {
$page = "olt_list";
} else {
}
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Pon Control</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css" media="all" />
<link rel="stylesheet" type="text/css" href="css/style.css" media="all" />
<!--[if IE 7]><link rel="stylesheet" type="text/css" href="style/css/ie7.css" media="all" /><![endif]-->
</head>
<body>
<div id="contain">
<!-- Begin Header Wrapper -->
<div id="page-top">
<div id="header-wrapper">
<!-- Begin Header -->
<div id="header">
<div id="logo"><a href="index.php"><img src="images/logo.png" alt="" /></a></div>
<!-- Logo -->
<!-- Begin Menu -->
<div id="menu-wrapper">
<div id="smoothmenu1" class="ddsmoothmenu">
<ul>
<li><a href="<?php echo $left_href3; ?>"><?php echo $left_href_txt3; ?></a></li>
<li><a href="<?php echo $left_href; ?>"><?php echo $left_href_txt; ?></a></li>
<li><a href="<?php echo $left_href2; ?>"><?php echo $left_href_txt2; ?></a></li>
</ul>
</div>
</div>
<!-- End Menu -->
</div>
<!-- End Header -->
</div>
</div>
<!-- End Header Wrapper -->
<!-- Begin Wrapper -->
<div id="wrapper">
<div id="container">
<?php include "$page.php"; ?>
</div>
</div>
<!-- End Wrapper -->
<div class="clearfix"></div>
<div class="push"></div>
<!-- Begin Footer -->
<div id="footer-wrapper">
<div id="footer">
<div id="footer-content">
<!-- Begin Copyright -->
<div id="copyright">
<p>dan_aspire 2013-2015</p>
</div>
<!-- End Copyright -->
</div>
</div>
</div>
<!-- End Footer -->
</div>
</body>
</html>