2018-06-03 14:22:13 +00:00
|
|
|
<nav class="navbar navbar-expand navbar-light navbar-laravel sticky-top">
|
2018-05-30 02:42:40 +00:00
|
|
|
<div class="container">
|
2018-06-06 14:03:35 +00:00
|
|
|
<a class="navbar-brand d-flex align-items-center" href="{{ url('/timeline') }}" title="Logo">
|
2018-05-30 02:42:40 +00:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mr-2"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"></path><circle cx="12" cy="13" r="4"></circle></svg>
|
|
|
|
<strong class="font-weight-bold">{{ config('app.name', 'Laravel') }}</strong>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
2018-06-03 14:22:13 +00:00
|
|
|
<ul class="navbar-nav ml-auto d-none d-md-block">
|
2018-05-30 02:42:40 +00:00
|
|
|
<form class="form-inline search-form">
|
|
|
|
<input class="form-control mr-sm-2 search-form-input" type="search" placeholder="Search" aria-label="Search">
|
|
|
|
</form>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<ul class="navbar-nav ml-auto">
|
|
|
|
@guest
|
|
|
|
<li><a class="nav-link font-weight-bold text-primary" href="{{ route('login') }}">{{ __('Login') }}</a></li>
|
|
|
|
<li><a class="nav-link font-weight-bold" href="{{ route('register') }}">{{ __('Register') }}</a></li>
|
|
|
|
@else
|
2018-06-01 19:04:36 +00:00
|
|
|
<li class="nav-item px-2">
|
2018-06-09 04:39:06 +00:00
|
|
|
<a class="nav-link" href="{{route('discover')}}" title="Discover"><i class="far fa-compass fa-lg"></i></a>
|
2018-05-30 02:42:40 +00:00
|
|
|
</li>
|
2018-06-01 19:04:36 +00:00
|
|
|
<li class="nav-item px-2">
|
2018-06-09 04:39:06 +00:00
|
|
|
<a class="nav-link" href="{{route('notifications')}}" title="Notifications"><i class="far fa-heart fa-lg"></i></a>
|
2018-05-30 02:42:40 +00:00
|
|
|
</li>
|
2018-06-01 19:04:36 +00:00
|
|
|
<li class="nav-item dropdown px-2">
|
2018-06-06 14:03:35 +00:00
|
|
|
<a id="navbarDropdown" class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" v-pre title="User Menu">
|
2018-06-09 04:39:06 +00:00
|
|
|
<i class="far fa-user fa-lg"></i> <span class="caret"></span>
|
2018-05-30 02:42:40 +00:00
|
|
|
</a>
|
|
|
|
|
|
|
|
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
|
2018-06-09 23:35:21 +00:00
|
|
|
<a class="dropdown-item font-weight-ultralight text-truncate" href="{{Auth::user()->url()}}">
|
|
|
|
<img class="img-thumbnail rounded-circle pr-1" src="{{Auth::user()->profile->avatarUrl()}}" width="32px">
|
2018-06-09 04:39:06 +00:00
|
|
|
@{{Auth::user()->username}}
|
2018-06-09 23:35:21 +00:00
|
|
|
<p class="small mb-0 text-muted">{{__('navmenu.viewMyProfile')}}</p>
|
2018-06-09 04:39:06 +00:00
|
|
|
</a>
|
2018-05-30 02:42:40 +00:00
|
|
|
<div class="dropdown-divider"></div>
|
|
|
|
<a class="dropdown-item font-weight-bold" href="{{route('timeline.personal')}}">
|
2018-06-09 04:39:06 +00:00
|
|
|
<span class="fas fa-list-alt pr-1"></span>
|
|
|
|
{{__('navmenu.myTimeline')}}
|
2018-05-30 02:42:40 +00:00
|
|
|
</a>
|
|
|
|
<a class="dropdown-item font-weight-bold" href="{{route('timeline.public')}}">
|
2018-06-09 04:39:06 +00:00
|
|
|
<span class="far fa-list-alt pr-1"></span>
|
|
|
|
{{__('navmenu.publicTimeline')}}
|
|
|
|
</a>
|
|
|
|
<div class="dropdown-divider"></div>
|
|
|
|
<a class="dropdown-item font-weight-bold" href="{{route('remotefollow')}}">
|
|
|
|
<span class="fas fa-user-plus pr-1"></span>
|
|
|
|
{{__('navmenu.remoteFollow')}}
|
2018-05-30 02:42:40 +00:00
|
|
|
</a>
|
2018-06-09 04:39:06 +00:00
|
|
|
<a class="dropdown-item font-weight-bold" href="{{route('settings')}}">
|
|
|
|
<span class="fas fa-cog pr-1"></span>
|
|
|
|
{{__('navmenu.settings')}}
|
|
|
|
</a>
|
|
|
|
@if(Auth::user()->is_admin == true)
|
|
|
|
<a class="dropdown-item font-weight-bold" href="{{ route('admin.home') }}">
|
|
|
|
<span class="fas fa-cogs pr-1"></span>
|
|
|
|
{{__('navmenu.admin')}}
|
|
|
|
</a>
|
|
|
|
<div class="dropdown-divider"></div>
|
|
|
|
@endif
|
2018-05-30 02:42:40 +00:00
|
|
|
<a class="dropdown-item font-weight-bold" href="{{ route('logout') }}"
|
|
|
|
onclick="event.preventDefault();
|
|
|
|
document.getElementById('logout-form').submit();">
|
2018-06-09 04:39:06 +00:00
|
|
|
<span class="fas fa-sign-out-alt pr-1"></span>
|
|
|
|
{{ __('navmenu.logout') }}
|
2018-05-30 02:42:40 +00:00
|
|
|
</a>
|
|
|
|
|
|
|
|
<form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;">
|
|
|
|
@csrf
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
@endguest
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
2018-06-03 14:28:59 +00:00
|
|
|
<nav class="breadcrumb d-md-none d-flex">
|
|
|
|
<form class="form-inline search-form mx-auto">
|
2018-06-03 14:22:13 +00:00
|
|
|
<input class="form-control mr-sm-2 search-form-input" type="search" placeholder="Search" aria-label="Search">
|
|
|
|
</form>
|
|
|
|
</nav>
|