-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
89 lines (86 loc) · 3.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<!--
Design by TEMPLATED
http://templated.co
Released for free under the Creative Commons Attribution License
Name : Cupcaked Out
Version : 1.0
Released : 20130222
-->
<html lang="en">
<head>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Coaching Kids</title>
<link href="http://fonts.googleapis.com/css?family=Bitter" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<?php require_once 'core/init.php'; ?>
<?php $user = new User(); ?>
<script type="text/javascript" src="home/index.js"></script>
</head>
<body>
<div id="outer">
<div id="header">
<div id="logo">
<a href="/">
<img src="images/logo.png" alt="Coaching Kids logo" />
</a>
</div>
<div id="nav">
<ul>
<li class="first active">
<a href="">Inicio</a>
</li>
<li>
<a href="#">Coaching</a>
</li>
<li>
<a href="#">Cursos</a>
</li>
<li>
<a href="tienda">Tienda</a>
</li>
<li>
<a href="#">Acerca</a>
</li>
<?php if($user->isLoggedIn()) { ?>
<li>
<a href="#">Contacto</a>
</li>
<li class="last">
<a href="actions/logout.php">Cerrar Sesión</a>
</li>
<?php } else { ?>
<li class="last">
<a href="#">Contacto</a>
</li>
<?php } ?>
</ul>
<br class="clear" />
</div>
</div>
<?php include_once 'home/index.php'; ?>
<div id="footer">
<div id="footerContent">
<h3>¡Encuéntrenos!</h3>
<p>
<a href="#" title="Facebook"><img class="left" src="images/facebook.png" alt="Facebook" /></a>
<a href="#" title="LinkedIn"><img class="left" src="images/linkedin.png" alt="LinkedIn" /></a>
<a href="#" title="RSS"><img class="left" src="images/rss.png" alt="RSS" /></a>
</p>
</div>
<br class="clear" />
</div>
</div>
<div id="copyright">
© Coaching Kids | Design by <a href="http://templated.co" rel="nofollow">TEMPLATED</a>
</div>
<?php
$error = Session::flash("error");
if(!empty($error)) { ?>
<script type="text/javascript">alert('<?php echo $error; ?>');</script>
<?php } ?>
</body>
</html>