diff options
author | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:35:48 +0100 |
---|---|---|
committer | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:35:48 +0100 |
commit | 74bca7ac803aeea3d5091344b99520687e3a3bd1 (patch) | |
tree | 8a63a2341303daac4ac621f8f4962a81d684e88a /resources/views/components/navigation.blade.php | |
parent | 9900446d9590024c34f55a45055776a396fb694e (diff) | |
parent | 14d3ed966bbafbcb01182df26fbbe1d5a211f4c2 (diff) |
Merge branch 'redesign'
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..dda02bd --- /dev/null +++ b/resources/views/components/navigation.blade.php @@ -0,0 +1,30 @@ +<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">Home +</a><br> +<a href="//git.diskfloppy.me/"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/repo.png') }}" width="16" height="16">Git +</a><br> +<a href="/pub/"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/pubfiles.png') }}" width="16" height="16">Public Files +</a><br> +<a href="/computers/"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/computers.png') }}" width="16" height="16">Computers +</a><br> +<a href="/calculators/"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/calculators.png') }}" width="16" height="16">Calculators +</a><br> +<a href="/bookmarks/"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/bookmarks.png') }}" width="16" height="16">Bookmarks +</a><br> +<a href="/guestbook/"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/guestbook.png') }}" width="16" height="16">Guestbook +</a><br> +<a href="//weather.diskfloppy.me/"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/weather.png') }}" width="16" height="16">Weather +</a><br> +<a href="/music/"> + <img class="pixel navbar-icon" src="{{ asset('images/icons/nav/music.png') }}" width="16" height="16">Music +</a><br> +</div> |