diff options
author | floppydiskette <git@diskfloppy.me> | 2024-08-08 02:00:44 +0100 |
---|---|---|
committer | floppydiskette <git@diskfloppy.me> | 2024-08-08 02:00:44 +0100 |
commit | e3f67fec07884b70e2a988ac0bb8cf6c9a750582 (patch) | |
tree | 280593edcd53a8789b4330e8aac708f1a34e3659 /resources/views/components/navigation.blade.php | |
parent | 9900446d9590024c34f55a45055776a396fb694e (diff) |
Initial redesign commit
Diffstat (limited to 'resources/views/components/navigation.blade.php')
-rw-r--r-- | resources/views/components/navigation.blade.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/resources/views/components/navigation.blade.php b/resources/views/components/navigation.blade.php new file mode 100644 index 0000000..a3d4270 --- /dev/null +++ b/resources/views/components/navigation.blade.php @@ -0,0 +1,30 @@ +<p><strong>Navigation:</strong></p> +<div class="navlinks"> +<a href="/" title="Home"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/home2.png') }}" alt="Home" width="16" height="16">Home +</a><br> +<a href="//git.diskfloppy.me/" title="cgit"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/repo.png') }}" alt="cgit" width="16" height="16">Git +</a><br> +<a href="/pub/" title="Public Files"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/pubfiles.png') }}" alt="Public Files" width="16" height="16">Public Files +</a><br> +<a href="/computers/" title="Computers"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/computers.png') }}" alt="Computers" width="16" height="16">Computers +</a><br> +<a href="/calculators/" title="Calculators"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/calculators.png') }}" alt="Calculators" width="16" height="16">Calculators +</a><br> +<a href="/bookmarks/" title="Bookmarks"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/bookmarks.png') }}" alt="Bookmarks" width="16" height="16">Bookmarks +</a><br> +<a href="/guestbook/" title="Guestbook"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/guestbook.png') }}" alt="Guestbook" width="16" height="16">Guestbook +</a><br> +<a href="//weather.diskfloppy.me/" title="Weather"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/weather.png') }}" alt="Weather" width="16" height="16">Weather +</a><br> +<a href="/music/" title="Music"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/music.png') }}" alt="Music" width="16" height="16">Music +</a><br> +</div> |