diskfloppy.me/resources/views/includes/header.blade.php

19 lines
679 B
PHP
Raw Normal View History

<nav>
<div>
2023-06-14 21:14:04 +00:00
<a href="/">home</a> |
2023-07-16 20:02:51 +00:00
<a href="//git.diskfloppy.me/">cgit</a> |
2023-07-12 23:06:44 +00:00
<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>
2023-07-16 20:02:51 +00:00
@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>