yes
This commit is contained in:
commit
2aef055057
37 changed files with 975 additions and 0 deletions
31
links.php
Normal file
31
links.php
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Yuki</title>
|
||||
<link rel="shortcut icon" href="img/yuki.png" type="image/jpg">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("top.php"); ?>
|
||||
<div class="container">
|
||||
<?php include("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>
|
||||
<div class="section footer">
|
||||
Copyleft <span class="copyleft">©</span> Yuki <?= date("Y") . PHP_EOL ?>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue