aboutsummaryrefslogtreecommitdiff
path: root/resources/views/includes/header.blade.php
blob: 01de256860fadd2ab2f324140f806faa64dfe6cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
    <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>