forked from blinx-org/moderator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
38 lines (38 loc) · 1.1 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
<?php
include_once './libs/const.php';
$_pageid = 3;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
$_TITLE = "Blinx Home page";
//var_dump($_SESSION['login_user']);
include_once './tags/common/head.php';
?>
</head>
<body>
<?php include_once './tags/global_header/header.php'; ?>
<div id="tagline">
<div class="container">
<div class="row">
</div>
</div>
</div>
<?php include_once './tags/home/service.php'; ?>
<div class="container">
<div class="row">
<div class="col-sm-6">
<?php include_once './tags/home/testimonials.php'; ?>
</div>
<!--<div class="col-sm-6">
<?php include_once './tags/home/twitter.php'; ?>
</div>-->
</div>
</div>
<!-- end:tagline -->
<?php include_once './tags/global_header/footer.php'; ?>
<!-- end:copyright -->
<?php include_once './tags/common/scripts.php'; ?>
</body>
</html>