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
|
<meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <title><?= $site_info["companyname_" . $langcode] ?></title> <meta name="description" content="<?= $site_info["metakeyword_" . $langcode] ?>"> <meta name="keywords" content="<?= $site_info["metadescription_" . $langcode] ?>"> <link href="css/style.css?v=<?= time(); ?>" type="text/css" rel="stylesheet"> <link href="css/style_k.css?v=<?= time(); ?>" type="text/css" rel="stylesheet"> <link href="css/bootstrap.min.css" rel="stylesheet"> <link href="css/font-awesome.min.css" rel="stylesheet"> <link href="css/agency.css" rel="stylesheet"> <link rel="shortcut icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png"> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/jquery-ui.js"></script> <script type="text/javascript" src="js/_dialog.js"></script>
<script> $(function () { <? if ($_SESSION['login'] == 'fail') { ?> $('#LiLoginMenu').click(); <? } ?>
<?php //TODO:: need to change link if (!check_key()) { echo 'window.location.href="https://www.imusiccircle.com/";'; } ?> }); </script>
|