forked from rutherlesdev/ChegouBackend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
63 lines (61 loc) · 1.73 KB
/
about.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
<?
include_once("common.php");
//error_reporting(E_ALL);
global $generalobj;
//added by SP for cubex changes on 07-11-2019
if($generalobj->checkXThemOn() == 'Yes') {
include_once("cx-about.php");
exit;
}
$script="About Us";
$meta = $generalobj->getStaticPage(1,$_SESSION['sess_lang']);
//echo "<pre>";print_r($_);exit;
?>
<!DOCTYPE html>
<html lang="en" dir="<?=(isset($_SESSION['eDirectionCode']) && $_SESSION['eDirectionCode'] != "")?$_SESSION['eDirectionCode']:'ltr';?>">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>
<?=$meta['meta_title'];?>
</title>
<meta name="keywords" value="<?=$meta['meta_keyword'];?>"/>
<meta name="description" value="<?=$meta['meta_desc'];?>"/>
<!-- Default Top Script and css -->
<?php include_once("top/top_script.php");?>
<!-- End: Default Top Script and css-->
</head>
<body>
<div id="main-uber-page">
<!-- Left Menu -->
<?php include_once("top/left_menu.php");?>
<!-- End: Left Menu-->
<!-- home page -->
<!-- Top Menu -->
<?php include_once("top/header_topbar.php");?>
<!-- End: Top Menu-->
<!-- contact page-->
<div class="page-contant">
<div class="page-contant-inner">
<h2 class="header-page trip-detail">
<?=$meta['page_title'];?>
</h2>
<!-- trips detail page -->
<div class="static-page">
<?=$meta['page_desc'];?>
</div>
</div>
</div>
<!-- home page end-->
<!-- footer part -->
<?php include_once('footer/footer_home.php');?>
<!-- End:contact page-->
<div style="clear:both;"></div>
</div>
<!-- footer part end -->
<!-- Footer Script -->
<?php include_once('top/footer_script.php');?>
<!-- End: Footer Script -->
<!-- Powered by V3Cube.com -->
</body>
</html>