blob: a66765f3398d9a08b7054db01f601ada7fc03f42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php $title = "Social"; require_once $_SERVER["DOCUMENT_ROOT"] . "/includes/gui/header.php"; ?>
<div class="container">
<br>
<h1>Social</h1>
<br>
<div class="row">
<?php foreach (json_decode(file_get_contents($_SERVER["DOCUMENT_ROOT"] . "/data/contact.json"), true) as $project): ?>
<div class="col-lg-4">
<div class="card stylized-card">
<div class="card-body">
<img class="stylized-card-icon" src="<?= $project["icon"] ?>" alt="">
<h4 class="card-title"><?= $project["name"] ?></h4>
<p class="card-text"><?= $project["link"] ?></p>
<a href="<?= $project["link"] ?>" target="_blank" class="btn btn-outline-light">View More</a>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
<?php require_once $_SERVER["DOCUMENT_ROOT"] . "/includes/gui/footer.php"; ?>
|