-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
45 lines (45 loc) · 2.58 KB
/
index.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
44
45
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link href="https://duncte123.me/favicon.ico" rel="icon" type="image/x-icon" />
<link href="https://duncte123.me/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link href="https://duncte123.me/favicon.ico" rel="apple-touch-icon" type="image/x-icon" />
<meta content="https://duncte123.me/favicon.ico" property="og:image" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scaleble=0" />
<meta name="category" content="Showcase/Website" />
<meta name="description" content="Duncte's little showcase" />
<meta name="author" content="Duncan Sterken" />
<meta name="keywords" content="Duncan Sterken, duncte123, dunste123, DHG, dshelmondgames, dhg, DSHelmondGames, dev, duncan, sterken, good, web, site, developer" />
<meta content="dev.duncte123.ml" property="og:site_name" />
<meta content="Home | dev.duncte123.ml" property="og:title" />
<meta content="website" property="og:type" />
<meta content="Duncte's little showcase" property="og:description" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@duncte123" />
<meta name="twitter:title" content="Home | dev.duncte123.me" />
<meta name="twitter:description" content="Duncte's little showcase" />
<meta name="twitter:image" content="https://duncte123.me/favicon.ico" />
<title>Home | dev.duncte123.me</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
</head>
<body>
<div class="container">
<div class="row">
<h1 class="text-center">Hey and welcome.</h1>
<h4 class="text-center">This is my development website/showcase webiste, which means that a lot of the stuff that I make for fun is displayed on here.</h4>
</div>
<div class="row">
<h6>Over here you can find a list of the projects on this website.</h6>
<?php
$dirs = array_filter(glob('*'), fn ($item) => is_dir($item));
foreach($dirs as $dir) {
echo "<p><a href=\"/$dir/\" target=\"_blank\">/$dir/</a></p>";
}
?>
</div>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>