2023-09-02 23:10:21 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2024-05-24 00:51:04 +02:00
|
|
|
<?php include("inc/head.php"); ?>
|
2023-09-02 23:10:21 +02:00
|
|
|
|
|
|
|
<body>
|
2023-09-02 23:19:19 +02:00
|
|
|
<?php include("inc/top.php"); ?>
|
2023-09-02 23:10:21 +02:00
|
|
|
<div class="container">
|
2023-09-02 23:19:19 +02:00
|
|
|
<?php include("inc/header.php"); ?>
|
2023-09-02 23:10:21 +02:00
|
|
|
<div class="section">
|
|
|
|
<h2>Links</h2>
|
|
|
|
<ul>
|
|
|
|
<?php foreach($links as $link) { ?>
|
|
|
|
<li><a href="<?=$link["link"]?>" target="_blank" rel="me noopener noreferrer"><?=$link["name"]?></a></li>
|
|
|
|
<?php } ?>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2023-09-02 23:19:19 +02:00
|
|
|
<?php include("inc/footer.php"); ?>
|
2023-09-02 23:10:21 +02:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|