-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
50 lines (42 loc) · 1.54 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
<!DOCTYPE html>
<link type="text/css" rel="stylesheet" href="css/front.css" />
<link type="text/css" rel="stylesheet" href="css/codrops/common.css" />
<link type="text/css" rel="stylesheet" href="css/codrops/normalize.css" />
<link type="text/css" rel="stylesheet" href="css/codrops/style2.css" />
<link href='http://fonts.googleapis.com/css?family=Titillium+Web' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<html lang="en/us">
<head>
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Park</title>
</head>
<?php
include_once 'includes/connect.php';
include_once 'includes/core.php';
?>
<body>
<?php
if(!loggedin()){
include('includes/header.php');
echo '<content>';
include 'views/home.php';
include 'views/about.php';
include 'views/services.php';
include 'views/team.php';
include 'views/contact_us.php';
echo '</content>';
}
else{
include('includes/header.php');
include 'dashboard.php';
}
?>
<script src="js/jquery-1.11.1.js"></script>
<script src="js/front.js"></script>
<script src="js/modernizr.custom.codrops.js"></script>
<?php include_once 'includes/footer.php'; ?>
</body>
</html>