-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
72 lines (72 loc) · 2.72 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
63
64
65
66
67
68
69
70
71
72
<?php
include('config/setup.php');
include('objects/login-register.php');
?>
<!DOCTYPE HTML>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<title><?php echo $siteTitle." | ".$page['header'];?></title>
<!--[if lte IE 7]><div class="alert-ie7">
The browser you are using is <strong>out of date</strong>. Please <strong><a href="http://browsehappy.com/">update your browser</a></strong> or <strong><a href="http://www.google.com/chromeframe/?redirect=true">enable Google Chrome Frame</a></strong>. </div><![endif]-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/jquery-ui.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/fontawesome-iconpicker.min.css">
<link rel="stylesheet" href="css/default.css">
<script src="js/jquery-1.11.2.min.js"></script>
<script src="js/jquery-migrate-1.2.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/fontawesome-iconpicker.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/minified/jquery.sceditor.bbcode.min.js"></script>
<script src="js/main.js"></script>
<script src="https://apis.google.com/js/plusone.js"></script>
<script src="https://apis.google.com/js/plus.js"></script>
<script src='https://www.google.com/recaptcha/api.js'></script>
</head>
<body>
<div id="view">
<div id="top">
<?php include('objects/header.php');?>
</div>
<?php if(isset($ad_d)==1 and isset($ad_key)){ ?>
<div id="bottom">
<div class="ad_diagonal">
<?php include('objects/ad_bottom.php'); ?>
</div>
</div>
<?php } ?>
<div id="content">
<div id="slider"></div>
<div id="left">
<?php include('objects/navigation.php');?>
</div>
<div id="right">
<div class="ad_vertical">
<?php if(isset($ad_v)==1 and isset($ad_key)){ include('objects/ad_vertical.php');} ?>
</div>
<div class="info_square">
<div>
<?php echo $infosquare['body']; ?>
</div>
</div>
</div>
<div id="body">
<?php include($type);?>
</div>
</div>
</div>
<div id="footer">
<?php include('objects/footer.php');?>
</div>
<?php if(!isset($_SESSION['email'])){ ?>
<a id="black-background" class="close-lg"></a>
<div id="login-conteiner">
<?php include('objects/form_login.php'); ?>
</div>
<?php } ?>
</body>
</html>