-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutUs.php
30 lines (29 loc) · 1.04 KB
/
aboutUs.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
<?php
require("core/functions.php");
require("core/dbConnect.php");
?>
<!DOCTYPE html>
<html lang="tr">
<head>
<title><?php echo($settings["title"]); ?> - About Us</title>
<?php require("pages/header.php"); ?>
</head>
<body class="bg-primary-gradient">
<?php require("pages/navbar.php"); ?>
<section class="pt-5 mt-4 mb-4">
<div class="container pt-5 pt-5 p-lg-5">
<div class="row d-flex justify-content-center container">
<h2 class="text-center"><strong>About Us</strong><h2>
<?php echo($settings["aboutUsPage"]); ?>
</div>
</div>
</section>
<?php require("pages/footer.php"); ?>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/bs-init.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script src="assets/js/bold-and-bright.js"></script>
</body>
</html>
<?php $connect = null; ?>