-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
43 lines (43 loc) · 1.41 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
<?php
session_start();
$pageTitle = 'About';
include 'init.php';
$IsAbout = $con->prepare("SELECT * FROM `about` LIMIT 1");
$IsAbout->execute();
if (!empty($IsAbout)) {
?>
<div class="row g-3">
<?php
foreach ($IsAbout as $about) {
$markdownContent = $about['bio_a'];
$bio = $Parsedown->text($markdownContent);
?>
<div class="col-md-4">
<img class="img-about" src="./uploads/<?php echo $about['image'] ?>" alt="me">
</div>
<div class="col-md-8 align-self-center">
<div class="about-info">
<?php echo $bio ?>
</div>
<nav class="nav media border-top">
<h2 class="link-media">Contact info</h2>
<a class="nav-link" href="<?php echo $about['fb'] ?>" aria-label="On facebook" target="_blank">
<i class="fab fa-facebook-square fa-2xl"></i>
</a>
<a class="nav-link" href="<?php echo $about['insta'] ?>" aria-label="On instagram" target="_blank">
<i class="fab fa-instagram-square fa-2xl"></i>
</a>
<a class="nav-link" href="<?php echo $about['twt'] ?>" aria-label="On twitter" target="_blank">
<i class="fab fa-twitter-square fa-2xl"></i>
</a>
</nav>
</div>
<?php
}
?>
</div>
<?php
} else {
echo '<p class="alert alert-info">Add info About</p>';
}
include $tpl . 'footer.php'; ?>