diff options
author | Frankie B <git@diskfloppy.me> | 2023-07-28 23:44:46 +0100 |
---|---|---|
committer | Frankie B <frankieraybrown@gmail.com> | 2023-07-29 18:10:50 +0100 |
commit | 9a10c8db3ade25b1f9e920d0860063b95bd00dd6 (patch) | |
tree | 15d4aa43d02e17d7f42ee69d8e5c0a59f35192c6 /resources/views/includes | |
parent | 4ac2a014d0094766c7d117cb83a048c98994613d (diff) |
Update header to new design
Diffstat (limited to 'resources/views/includes')
-rw-r--r-- | resources/views/includes/header.blade.php | 35 |
1 files changed, 13 insertions, 22 deletions
diff --git a/resources/views/includes/header.blade.php b/resources/views/includes/header.blade.php index 1804077..78a696a 100644 --- a/resources/views/includes/header.blade.php +++ b/resources/views/includes/header.blade.php @@ -1,27 +1,18 @@ <nav> <div> - <!--<a href="/">home</a> | - <a href="//git.diskfloppy.me/">cgit</a> | - <a href="/projects/">projects</a> | - <a href="/calculators/">calculators</a> | - <a href="/computers/">computers</a> | - <a href="/bookmarks/">bookmarks</a> | - <a href="/guestbook/">guestbook</a> - @if (auth()->check()) -| <a href="/admin/">admin</a> - | ({{ auth()->user()->name }}) <a href="/logout">logout</a> -@else -| <a href="/login">login</a> -@endif - --> <h1>diskfloppy.me | <strong>@yield('title')</strong></h1> - <a href="/" title="Home"><img src="/images/icons/nav/home.png"></a> - <a href="//git.diskfloppy.me/" title="cgit"><img src="/images/icons/nav/repo.png"></a> - <a href="/bookmarks/" title="Bookmarks"><img src="/images/icons/nav/bookmarks.png"></a> - <a href="/guestbook/" title="Guestbook"><img src="/images/icons/nav/guestbook.png"></a> - <a href="/contact/" title="Contact"><img src="/images/icons/nav/mail.png"></a> - <a href="/weather/" title="Weather"><img src="/images/icons/nav/weather.png"></a> - <a href="/music/" title="Music"><img src="/images/icons/nav/music.png"></a> - <a href="/login/" title="Log in"><img src="/images/icons/nav/login.png"></a> + <a href="/" title="Home"><img src="/images/icons/nav/home.png" alt="Home"></a> + <a href="//git.diskfloppy.me/" title="cgit"><img src="/images/icons/nav/repo.png" alt="cgit"></a> + <a href="/bookmarks/" title="Bookmarks"><img src="/images/icons/nav/bookmarks.png" alt="Bookmarks"></a> + <a href="/guestbook/" title="Guestbook"><img src="/images/icons/nav/guestbook.png" alt="Guestbook"></a> + <a href="/contact/" title="Contact"><img src="/images/icons/nav/mail.png" alt="Contact"></a> + <a href="/weather/" title="Weather"><img src="/images/icons/nav/weather.png" alt="Weather"></a> + <a href="/music/" title="Music"><img src="/images/icons/nav/music.png" alt="Music"></a> + @if (auth()->check()) + <a href="/admin/">admin</a> + ({{ auth()->user()->name }}) <a href="/logout">logout</a> + @else + <a href="/login/" title="Login"><img src="/images/icons/nav/login.png" alt="Login"></a> + @endif </div> </nav> |