server ver - adding lazy loading to emoji images in atmos layout

This commit is contained in:
2021-07-11 09:16:14 +00:00
parent 8a13824fd0
commit 576669d9ee
17 changed files with 1462 additions and 45 deletions

View File

@@ -0,0 +1,26 @@
<div class="details bg-dark sticky-top">
@if (!empty($__env->yieldContent('novidcontent')))
{{-- nix --}}
@else
@endif
@if(Auth::check())
<div class="details_user">
@if(Auth::user()->messagesRecv()->unread()->count() < 1)
<span class="nomsg">|</span> <span><a href="{{url('messages')}}">[{{Auth::user()->messagesRecv()->unread()->count()}}]</a></span>@else
<span class="yesmg">|</span> <span><a href="{{url('messages')}}">[{{Auth::user()->messagesRecv()->unread()->count()}}]</a></span>@endif</span>
<a href="{{url('user', Auth::user()->username)}}">{{Auth::user()->username}}</a>
<a href="{{url('user', Auth::user()->username)}}/favs"><span class=""><i class="fa fa-heart"></i></span></a>
<a href="#" data-toggle="modal" data-target="#filterselectmodal">Filter</a>
<a href="{{url('upload')}}">Upload</a>
<a class="logout" href="{{url('logout')}}">Logout</a>
</div>
@else
{{-- nix --}}
@endif
@if($video->videotitle)
<div class="videoTitle">
{{$video->videotitle}}
</div>
@endif
</div>