woah is that a new design

This commit is contained in:
floppydiskette 2024-11-04 23:12:59 +00:00
commit 098d68b393
No known key found for this signature in database
6 changed files with 207 additions and 405 deletions

View file

@ -22,83 +22,111 @@
<meta property="og:title" content="{{ str_replace("www.", "", Request::getHost()) }} | {{ $title }}">
<meta property="og:image" content="/favicon-128x128.png">
</head>
<body onload="setSchemeSelector()">
<div class="container">
<div class="page">
<header>
<h1>{{ str_replace("www.", "", Request::getHost()) }}</h1>
</header>
<div class="navbar">
<p>
<strong>Current Path:</strong>
@if(Request::getRequestUri() == "/")
/
@else
{{ str_replace("/", " / ", rtrim(Request::getRequestUri(), "/")) }}
@endif
</p>
<body>
<div class="page-container">
<div>
<div id="site-header">
<h1>niko's site</h1>
</div>
<div class="content">
<main>
{{ $slot }}
</main>
<div class="sidebar">
<div class="section"><nav><x-navigation/></nav></div>
<div class="section"><x-settings/></div>
<div class="section centerbox"><x-discord-status/></div>
<div class="section"><x-weather/></div>
</div>
<div><x-navigation/></div>
<div class="section centerbox"><x-discord-status/></div>
<div class="section"><x-weather/></div>
</div>
<div>
{{ $slot }}
</div>
<div class="footer">
<div>
(c) floppydisk 2021-{{ date('Y') }}<br>
v{{ config('app.version') }},
<a href="https://git.frzn.dev/fwoppydwisk/diskfloppy.me/releases/latest">Source</a><br>
Served by {{ gethostname() }}
</div>
<div>
<a href="https://confusionunknown.nekoweb.org/" class="button">
<img src="{{ URL::asset('images/buttons/cnfunknown.gif') }}" width="88" height="31"
class="pixel" alt="confusionunknown">
</a>
<a href="https://julimiro.eu/" class="button">
<img src="{{ URL::asset('images/buttons/juli.gif') }}" width="88" height="31"
class="pixel" alt="julimiro">
</a>
<a href="https://x86.breadtf.com/" class="button">
<img src="{{ URL::asset('images/buttons/x86.gif') }}" width="88" height="31"
class="pixel" alt="x86Overflow">
</a>
<img src="{{ URL::asset('images/buttons/transrights.gif') }}" width="88" height="31"
class="pixel" alt="Trans rights now!">
<img src="{{ URL::asset('images/buttons/yuri.gif') }}" width="88" height="31"
class="pixel" alt="Catgirl yuri now!">
<img src="{{ URL::asset('images/buttons/brokenimage.gif') }}" width="88" height="31"
class="pixel" alt="Made with my own two paws"><br>
<a href="https://dimden.dev/" class="button">
<img src="https://dimden.dev/services/images/88x31.gif" width="88" height="31"
class="pixel" alt="dimden.dev">
</a>
<a href="https://www.linux.org/" class="button">
<img src="{{ URL::asset('images/buttons/linuxnow.gif') }}" width="88"
class="pixel" height="31" alt="Linux NOW!">
</a>
<a href="https://www.vim.org/" class="button">
<img src="{{ URL::asset('images/buttons/vim.gif') }}" width="88" height="31"
class="pixel" alt="vim">
</a>
<a href="https://wave.webaim.org/" class="button">
<img src="{{ URL::asset('images/buttons/evaluatedWAVE.png') }}" width="88" height="31"
class="pixel" alt="Evaluated to be accessible!">
</a>
<img src="{{ URL::asset('images/buttons/aliasing.png') }}" width="88" height="31"
class="pixel" alt="I heart aliasing!">
<img src="{{ URL::asset('images/buttons/paws.gif') }}" width="88" height="31"
class="pixel" alt="Made with my own two paws">
</div>
<footer>
<div>
(c) floppydisk 2021-{{ date('Y') }}<br>
v{{ config('app.version') }},
<a href="https://git.frzn.dev/fwoppydwisk/diskfloppy.me/releases/latest">Source</a>,
<a href="/privacy">Privacy Policy?</a><br>
Served by {{ gethostname() }}
</div>
<div>
<a href="https://confusionunknown.nekoweb.org/" class="button">
<img src="{{ URL::asset('images/buttons/cnfunknown.gif') }}" width="88" height="31"
class="pixel" alt="confusionunknown">
</a>
<a href="https://julimiro.eu/" class="button">
<img src="{{ URL::asset('images/buttons/juli.gif') }}" width="88" height="31"
class="pixel" alt="julimiro">
</a>
<a href="https://x86.breadtf.com/" class="button">
<img src="{{ URL::asset('images/buttons/x86.gif') }}" width="88" height="31"
class="pixel" alt="x86Overflow">
</a>
<img src="{{ URL::asset('images/buttons/brokenimage.gif') }}" width="88" height="31"
class="pixel" alt="Made with my own two paws">
<img src="{{ URL::asset('images/buttons/brokenimage.gif') }}" width="88" height="31"
class="pixel" alt="Made with my own two paws">
<img src="{{ URL::asset('images/buttons/brokenimage.gif') }}" width="88" height="31"
class="pixel" alt="Made with my own two paws"><br>
<a href="https://dimden.dev/" class="button">
<img src="https://dimden.dev/services/images/88x31.gif" width="88" height="31"
class="pixel" alt="dimden.dev">
</a>
<a href="https://www.linux.org/" class="button">
<img src="{{ URL::asset('images/buttons/linuxnow.gif') }}" width="88"
class="pixel" height="31" alt="Linux NOW!">
</a>
<a href="https://www.vim.org/" class="button">
<img src="{{ URL::asset('images/buttons/vim.gif') }}" width="88" height="31"
class="pixel" alt="vim">
</a>
<a href="https://wave.webaim.org/" class="button">
<img src="{{ URL::asset('images/buttons/evaluatedWAVE.png') }}" width="88" height="31"
class="pixel" alt="Evaluated to be accessible!">
</a>
<img src="{{ URL::asset('images/buttons/aliasing.png') }}" width="88" height="31"
class="pixel" alt="I heart aliasing!">
<img src="{{ URL::asset('images/buttons/paws.gif') }}" width="88" height="31"
class="pixel" alt="Made with my own two paws">
</div>
</footer>
</div>
</div>
</body>
</html>
{{--<div class="container">--}}
{{-- <div class="page">--}}
{{-- <header>--}}
{{-- <h1>{{ str_replace("www.", "", Request::getHost()) }}</h1>--}}
{{-- </header>--}}
{{-- <div class="navbar">--}}
{{-- <p>--}}
{{-- <strong>Current Path:</strong>--}}
{{-- @if(Request::getRequestUri() == "/")--}}
{{-- /--}}
{{-- @else--}}
{{-- {{ str_replace("/", " / ", rtrim(Request::getRequestUri(), "/")) }}--}}
{{-- @endif--}}
{{-- </p>--}}
{{-- </div>--}}
{{-- <div class="content">--}}
{{-- <main>--}}
{{-- {{ $slot }}--}}
{{-- </main>--}}
{{-- <div class="sidebar">--}}
{{-- <div class="section"><nav><x-navigation/></nav></div>--}}
{{-- <div class="section"><x-settings/></div>--}}
{{-- <div class="section centerbox"><x-discord-status/></div>--}}
{{-- <div class="section"><x-weather/></div>--}}
{{-- </div>--}}
{{-- </div>--}}
{{-- <footer>--}}
{{-- <div>--}}
{{-- (c) floppydisk 2021-{{ date('Y') }}<br>--}}
{{-- v{{ config('app.version') }},--}}
{{-- <a href="https://git.frzn.dev/fwoppydwisk/diskfloppy.me/releases/latest">Source</a>,--}}
{{-- <a href="/privacy">Privacy Policy?</a><br>--}}
{{-- Served by {{ gethostname() }}--}}
{{-- </div>--}}
{{-- <div>--}}
{{-- </div>--}}
{{-- </footer>--}}
{{-- </div>--}}
{{--</div>--}}
{{--</body>--}}
{{--</html>--}}

View file

@ -1,30 +1,14 @@
<p><strong>Navigation:</strong></p>
<div class="navlinks">
<a href="/">
<img class="pixel navbar-icon" src="{{ asset('images/icons/nav/home2.png') }}" width="16" height="16" alt="">Home
</a><br>
<a href="//git.diskfloppy.me/">
<img class="pixel navbar-icon" src="{{ asset('images/icons/nav/repo.png') }}" width="16" height="16" alt="">Git
</a><br>
<a href="/pub/">
<img class="pixel navbar-icon" src="{{ asset('images/icons/nav/pubfiles.png') }}" width="16" height="16" alt="">Public Files
</a><br>
<a href="/computers/">
<img class="pixel navbar-icon" src="{{ asset('images/icons/nav/computers.png') }}" width="16" height="16" alt="">Computers
</a><br>
<a href="/calculators/">
<img class="pixel navbar-icon" src="{{ asset('images/icons/nav/calculators.png') }}" width="16" height="16" alt="">Calculators
</a><br>
<a href="/bookmarks/">
<img class="pixel navbar-icon" src="{{ asset('images/icons/nav/bookmarks.png') }}" width="16" height="16" alt="">Bookmarks
</a><br>
<a href="/guestbook/">
<img class="pixel navbar-icon" src="{{ asset('images/icons/nav/guestbook.png') }}" width="16" height="16" alt="">Guestbook
</a><br>
<a href="//weather.diskfloppy.me/">
<img class="pixel navbar-icon" src="{{ asset('images/icons/nav/weather.png') }}" width="16" height="16" alt="">Weather
</a><br>
<a href="/music/">
<img class="pixel navbar-icon" src="{{ asset('images/icons/nav/music.png') }}" width="16" height="16" alt="">Music
</a><br>
</div>
<nav>
<p><strong>Navigation:</strong></p>
<div class="navlinks">
<a href="/">/home/niko</a><br>
<a href="//git.diskfloppy.me/">~/git</a><br>
<a href="/pub/">~/pub</a><br>
<a href="/computers/">~/computers</a><br>
<a href="/calculators/">~/calculators</a><br>
<a href="/bookmarks/">~/bookmarks</a><br>
<a href="/guestbook/">~/guestbook</a><br>
<a href="//weather.diskfloppy.me/">~/weather</a><br>
<a href="/music/">~/music</a><br>
</div>
</nav>