-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsitemap.php
68 lines (66 loc) · 1.78 KB
/
sitemap.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sitemap</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<style>
* {
font-family: "Ubuntu", sans-serif;
}
html,
body {
max-width: 100%;
overflow: hidden;
}
.block {
display: inline-block;
vertical-align: top;
float: left;
margin: 10px 40px;
}
ul {
list-style: none;
padding-left: 25px;
}
a {
text-transform: lowercase;
}
</style>
</head>
<body>
<?php
function getDirMap($dirName)
{
// read page directory
$dirMap = array();
if ($handle = opendir('./' . $dirName)) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != ".." && $file != 'favicon.ico') {
$dirMap[] = array(
'url' => $dirName . "/" . $file,
'name' => (($ext_index = strripos($file, ".php", -1)) === false ? $file
: substr_replace($file, "", $ext_index, 4)),
);
}
}
closedir($handle);
}
return $dirMap;
}
?>
<div class="block">
<h1>Pages</h1>
<ul>
<?php foreach (getDirMap('markup/pages') as $value) { ?>
<li>
<a href="<?= $value['url']; ?>">
<?= $value['name']; ?>
</a>
</li>
<?php } ?>
</ul>
</div>
</body>
</html>