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
|
<?php $without_session_start = true; require_once( realpath(dirname(__FILE__)) . '/common/config.php'); ?><!DOCTYPE HTML> <html> <head> <meta charset="utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Glorious Entertainment</title> <link rel="stylesheet" type="text/css" href="css/vader/jquery-ui-1.10.3.custom.min.css" /> <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" /> <link rel="stylesheet" type="text/css" href="css/bootstrapSwitch.css" /> <link rel="stylesheet" type="text/css" href="css/smoothDivScroll.css" /> <link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.2.0.min.css" /> <link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" /> <link rel="stylesheet" type="text/css" href="css/style.css?v=<?=$v?>" /> <!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="css/ie8.css?v=<?=$v?>" /> <![endif]--> <style type="text/css"> body.ui-mobile-viewport, body.ui-overlay-c, .ui-body-c, .ui-page, .ui-page-active { background: black; } </style> <link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.min.css" /> <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script type="text/javascript" src="js/html5shiv.js"></script> <![endif]--> <script type="text/javascript" src="js/jquery-1.8.3.min.js"></script> <script type="text/javascript" src="js/bootstrap.min.js"></script> <script type="text/javascript" src="js/bootstrapSwitch.js"></script> <script type="text/javascript" src="js/jquery.validate.min.js"></script> <script type="text/javascript" src="js/jquery.validate.additional-methods.min.js"></script> <!-- <script type="text/javascript" src="js/jquery-ui-1.8.23.custom.min.js"></script> --> <script type="text/javascript" src="js/jquery-ui-1.10.3.custom.min.js"></script> <script type="text/javascript" src="js/jquery.mousewheel.min.js"></script> <script type="text/javascript" src="js/jquery.kinetic.js"></script> <script type="text/javascript" src="js/jquery.smoothdivscroll-1.3-min.js"></script> <script type="text/javascript" src="js/jquery.easing.1.3.js"></script> <script type="text/javascript" src="js/jquery.ba-hashchange.min.js"></script> <script type="text/javascript" src="js/jquery.slideshow.min.js"></script> <script type="text/javascript" src="js/jquery.nicescroll.js?v=<?=$v?>"></script> <script type="text/javascript" src="js/jquery.corner.js"></script> <script type="text/javascript" src="js/jquery.imagesloaded.min.js"></script> <script type="text/javascript" src="js/jquery.one-gridnav.js?v=<?=$v?>"></script> <script type="text/javascript" src="fancybox/jquery.mousewheel-3.0.4.pack.js"></script> <script type="text/javascript" src="fancybox/jquery.fancybox-1.3.4.js"></script> <script type="text/javascript" src="js/one-mosaic.1.0.1.js?v=<?=$v?>"></script> <script type="text/javascript" src="js/index.js?v=<?=$v?>"></script> <script type="text/javascript" src="js/json2.js"></script> <script type="text/javascript" src="js/jquery.mobile-1.2.0.min.js"></script> </head>
<body> <?=require_once( realpath(dirname(__FILE__)) . '/analyticstracking.php');?> <div class="initial-logo text-center"> <img alt="Logo" src="images/logo.gif?_=<?=date('YmdHis')?>" /> </div> </body> </html>
|