aboutsummaryrefslogtreecommitdiff
path: root/inc/nav.php
diff options
context:
space:
mode:
authorFrankie B <floppydisk05@aol.com>2022-09-19 21:21:41 +0000
committerFrankie B <floppydisk05@aol.com>2022-09-19 21:21:41 +0000
commit199be00b8ce144ff1018ed00a4d69543115a93d2 (patch)
treef2afe817ad0bbd5cf0449ba668155b3b45fa4e83 /inc/nav.php
parent222d3303b4a9e53969ef224c245e028e6a31f989 (diff)
Move global head to file and split between page-specific and global
Diffstat (limited to 'inc/nav.php')
-rw-r--r--inc/nav.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/inc/nav.php b/inc/nav.php
new file mode 100644
index 0000000..3f14fff
--- /dev/null
+++ b/inc/nav.php
@@ -0,0 +1,44 @@
+<script lang="javascript" src="/res/js/themeswap.js"></script>
+<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>
+ </div>
+ </nav>
+ <div class="pagetree">
+ <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 --> \ No newline at end of file