blob: 8e0cc6e5212a4639562e82a0d2ad7217601f6a65 (
plain)
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
|
<div class="header">
<nav>
<div>
<!--<a href="/me/">about</a> |
<a href="/projects/">projects</a> |
<a href="/pics/">pics</a> |-->
<a href="/dog/">dog</a> |
<a href="https://github.com/floppydisk05?tab=repositories">repos</a> |
<a href="/calculators/">calculators</a> |
<a href="/computers/">computers</a> |
<a href="/bookmarks/">bookmarks</a> |
<a href="https://blog.diskfloppy.me/">blog</a>
<!--<a href="/sitemap/">sitemap</a>-->
</div>
</nav>
<div class="pagetree">
<div style="float: left;">Design based on <a href="https://finalrewind.org/">finalrewind.org</a></div>
<span class="title">
<?php
$uri = $_SERVER['REQUEST_URI'];
if ($uri === '/') { echo '~floppydisk'; }
else {
$uri = substr(substr($uri, 1), 0, -1);
if (!strpos($uri, '/')) {
$uriArr = explode('/', $uri);
$link = "/";
$links = '<a href="/">~floppydisk</a> / ';
$currentDir = basename(getcwd());
foreach($uriArr as $page) {
if ($page !== $currentDir) {
if ($link !== '/') $link = $link . '/' . $page;
else $link = $link . $page;
$links = $links . '<a href="' . $link . '">' . $page . '</a> / ';
}
}
$links = substr($links, 0, -3) . ' / ' . $currentDir;
echo $links;
}
}
?>
</span>
<div style="float: right;"><a onclick="javascript:toggleTheme()">dark / light mode</a></div>
</div>
</div> <!-- header -->
|