diskfloppy.me/resources/views/includes/header.blade.php
2023-07-16 21:02:51 +01:00

19 lines
679 B
PHP

<nav>
<div>
<a href="/">home</a> |
<a href="//git.diskfloppy.me/">cgit</a> |
<a href="//wiki.diskfloppy.me/">wiki</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
</div>
</nav>