Files
Gw0bm/resources/views/layout3/video-partials/legacy-videonav.blade.php
2021-06-25 08:25:11 +00:00

35 lines
2.1 KiB
PHP

<div class="row">
@if($related)
@if(($prev = $video->getPrev($related)) === null)
<div class="col- first-video"><a class="first" href="#" style="visibility: hidden;"> « first</a></div>
<div class="col video-navigation"><a id="prev" href="#" style="visibility: hidden;"> « prev</a> |
@else
<div class="col- first-video"><a class="first" href="{{url($related->baseurl(), $video->getFirstId($related))}}"> « first</a></div>
<div class="col video-navigation"><a id="prev" href="{{url($related->baseurl(), [$prev->id])}}"> « prev</a> |
@endif
<a href="{{url($related->baseurl())}}">{!!$related->displayName()!!}</a>
@if(($next = $video->getNext($related)) === null)
| <a id="next" href="#" style="visibility: hidden;">next » </a></div>
<div class="col- latest-video"><a class="last" href="#" style="visibility: hidden;">last » </a></div>
@else
| <a id="next" href="{{url($related->baseurl(), [$next->id])}}">next » </a></div>
<div class="col- latest-video"><a class="last" href="{{url($related->baseurl(), $video->getLastId($related))}}">last » </a></div>
@endif
@else
@if(($prev = $video->getPrev()) === null)
<div class="col- first-video"><a class="first" href="#" style="visibility: hidden;"> « first</a></div>
<div class="col video-navigation"><a id="prev" href="#" style="visibility: hidden;"> « prev</a> |
@else
<div class="col- first-video"><a class="first" href="{{url($video->getFirstId())}}"> « first</a></div>
<div class="col video-navigation"><a id="prev" href="{{url($prev->id)}}"> « prev</a> |
@endif
<a href="{{url('/')}}">random</a>
@if(($next = $video->getNext()) === null)
| <a id="next" href="#" style="visibility: hidden;">next » </a></div>
<div class="col- latest-video"><a class="last" href="#" style="visibility: hidden;">last 🡆</a></div>
@else
| <a id="next" href="{{url($next->id)}}">next » </a></div>
<div class="col- latest-video"><a class="last" href="{{url($video->getLastId())}}">last » </a></div>
@endif
@endif
</div>