server ver
This commit is contained in:
59
resources/views/layout69/footertwo.blade.php
Normal file
59
resources/views/layout69/footertwo.blade.php
Normal file
@@ -0,0 +1,59 @@
|
||||
<div style="visibility: hidden;" class="footer">
|
||||
<div class="vidinfo_topper">
|
||||
<span class="videoinfo_top">
|
||||
@if($video->videotitle)
|
||||
[ <b>{{$video->videotitle}}</b> ]
|
||||
@else
|
||||
[ <b> / </b> ]
|
||||
@endif
|
||||
uploaded by <a class="{{ $video->user->username }}" style="color: white" href="{{ url('user/' . $video->user->username) }}">{!! $video->user->displayName() !!}</a></span> <time class="timeago" data-toggle="tooltip" data-placement="top" datetime="{{$video->created_at->toIso8601String()}}" title="{{$video->created_at->toIso8601String()}}"></time>
|
||||
|
||||
<button title="Toggle comments" class="hidden-xs toggle-comments" id="toggle"><i class="fa fa-comments"></i> <span id="commentAmount">{{ $video->comments()->count() }}</span></button>
|
||||
<button title="Toggle Background" class="hidden-xs bg-toggle" id="togglebg"><i style="color:#fff200;" class="fa fa-adjust"></i></button>
|
||||
<button class="copylink" data-clipboard-text="{{url($video->id)}}" title="Copy URL!"><i class="fa fa-link"></i></button>
|
||||
<div class="dropdown">
|
||||
<button class="fa fa-download"
|
||||
id="dlbutton"
|
||||
style="cursor: pointer"
|
||||
data-toggle="popover"
|
||||
data-placement="top"
|
||||
data-trigger="hover"
|
||||
data-html="true"
|
||||
title="Download"
|
||||
data-content="
|
||||
<div class='downloadvid'>
|
||||
<ul class='downloadlist'>
|
||||
<li><a class='file_size' href='{{ '/b/' . $video->file }}' download>WebM</a> <span class='filesize'> ({{HumanReadable::bytesToHuman($video->filesize()) }})</span></li>
|
||||
</ul>
|
||||
</div>"
|
||||
</button>
|
||||
</div>
|
||||
@if(auth()->check())
|
||||
<button title="Report WebM" id="webm_report" class="webm-report" data-toggle="modal" data-target="#webmreportmodal"><i class="fa fa-warning fa-md"></i></button>
|
||||
@endif
|
||||
|
||||
<div class="favbutton">
|
||||
@if(auth()->check())
|
||||
@if(auth()->user()->hasFaved($video->id))
|
||||
<a id="fav" href="{{url($video->id . '/fav')}}"><i style="color:#ff0094;" class="fa fa-heart"></i></a>
|
||||
@else
|
||||
<a id="fav" href="{{url($video->id . '/fav')}}"><i style="color:#ff0094;" class="fa fa-heart-o"></i></a>
|
||||
@endif
|
||||
@else
|
||||
<a href="{{url($video->id . '/fav')}}"><i class="fa fa-heart-o"></i></a>
|
||||
@endif
|
||||
</div>
|
||||
</button>
|
||||
<button class="fa fa-info-circle"
|
||||
id="infobox"
|
||||
style="cursor: pointer"
|
||||
data-toggle="popover"
|
||||
data-placement="top"
|
||||
data-trigger="hover"
|
||||
data-html="true"
|
||||
title="Information"
|
||||
data-content="@include('popover-content')">
|
||||
</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user