-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
40 lines (24 loc) · 802 Bytes
/
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
<?php include_once "assets/php/app.php" ?>
<?php
if ( chechkSiteVisibilityStatus($dbConn) === 1 || chechkSiteVisibilityStatus($dbConn) === 3)
{
}
else
{
chechkSiteVisibilityStatusAndRedirect($dbConn);
}
?>
<?php require_once 'assets/pages/head.php' ?>
<title> About Us - <?php echo $site_titile ?></title>
</head>
<body>
<div class="container-fluid">
<?php require_once 'assets/pages/navigation.php' ?>
<div class="contents container-fluid">
<?php require_once 'assets/pages/sidebar.php' ?>
<div class="page-contents">
<?php echo getContentsFromAFile("assets/pages/about.php"); ?>
</div>
</div>
</div>
<?php require_once 'assets/pages/footer.php' ?>