-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.php
37 lines (30 loc) · 1.17 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
<?php
//page controller
$pageUi='index';
include_once 'config.php';
?>
<!-- common header -->
<?php include 'commonheader.php'; ?>
<!-- common header -->
<!----------------------------- about content ------------------------------------>
<main>
<div class="container" style="min-height:35vh;">
<div class="row">
<div class="col bg-light p-3 m-3 rounded">
<div class="col-2 border-bottom border-3 my-3">
<p class="h5">درباره ما</p>
</div>
<p class="term-text"><?php echo file_get_contents("about.txt") ?></p>
</div>
</div>
</div>
</main>
<!----------------------------- about content ------------------------------------>
<!-- common footer -->
<?php include 'commonfooter.php'; ?>
<!-- common footer -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<!-- Option 1: Bootstrap Bundle with Popper -->
</body>
</html>