-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
35 lines (26 loc) · 1.11 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
<?php include('config/setup.php');
?>
<!doctype html>
<html>
<head>
<title><?php echo $site_title.' | '.$page['title']; ?></title>
<meta name="viewport" content="device-width, initial-scale=1.0">
<?php include('config/css.php'); ?>
<?php include('config/js.php'); ?>
</head>
<body>
<div id="wrapper">
<?php include(D_TEMPLATE.'/navigation.php')?>
<div class="container">
<h1><?php echo $page['header']; ?></h1>
<?php echo $page['body_formatted'];?>
</div>
<!--element1 area-->
<p>We are learning merging in git > lets see how this goes. I am not sure that we will get enough practise with this so thet we can be least good at using git. After git we are going through node once again WHAT A SHAME</p>
<?php home_page($dbc,"element1")?>
<?php home_page($dbc,"element2")?>
</div><!--End Wrap-->
<?php include(D_TEMPLATE.'/footer.php');?>
<?php if($debug == 1){ include('widgets/debug.php');} ?>
</body>
</html>