Changes
This commit is contained in:
parent
b00662b1fe
commit
8677395d2d
22 changed files with 1311 additions and 216 deletions
51
header.php
Normal file
51
header.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
ini_set('display_errors', 1);
|
||||
ini_set('display_startup_errors', 1);
|
||||
error_reporting(E_ALL);
|
||||
?>
|
||||
|
||||
<div class="header">
|
||||
<nav>
|
||||
<div>
|
||||
<a href="./me/">about</a> |
|
||||
<a href="./pics/">pics</a> |
|
||||
<a href="./projects/">projects</a> |
|
||||
<a href="./cgit">repos</a> |
|
||||
<a href="./calculators/">calculators</a> |
|
||||
<a href="./computers/">computers</a> |
|
||||
<a href="https://blog.diskfloppy.me/">blog</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 -->
|
Loading…
Add table
Add a link
Reference in a new issue