22 lines
485 B
PHP
22 lines
485 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<?php include("inc/head.php"); ?>
|
|
|
|
<body>
|
|
<?php include("inc/top.php"); ?>
|
|
<div class="container">
|
|
<?php include("inc/header.php"); ?>
|
|
<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>
|
|
<?php include("inc/footer.php"); ?>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|