This repository has been archived on 2024-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
w0bm/resources/views/layout2/video.blade.php
2023-03-14 17:31:11 +00:00

50 lines
1.7 KiB
PHP

@extends('layout')
@section('video')
<?php $related = $related ?? null; ?>
<div class="video-content onLoad">
<div class="video">
<div class="embed-responsive embed-responsive-16by9">
<video id="video" class="video embed-responsive-item" loop preload="auto" crossorigin="anonymous">
<source src="//w0bm.com/b{{ "/" . $video->file }}">
</video>
</div>
</div>
@include('video-partials.legacy-videonav')
</div>
@endsection
@section('testvideo')
<?php $related = $related ?? null; ?>
<div class="page">
<div class="video-wrap embed-responsive embed-responsive-16by9">
<div class="video">
<video id="video" class="video embed-responsive-item" loop preload="auto" crossorigin="anonymous">
<source src="//w0bm.com/b{{ "/" . $video->file }}">
</video>
</div>
</div>
@include('video-partials.legacy-videonav')
</div>
@endsection
@section('floatvid')
<div class="video-titlebar">
@if($video->videotitle)
<b>{{$video->videotitle}}</b>
@else <b><u>No Title</u></b>
@endif
uploaded by <small>{!! $video->user->displayName() !!}</small>
</div>
<div class="video-wrap embed-responsive embed-responsive-16by9" id="sticky-container">
@if($video->id == '27204')
<iframe style="height:100%!important; min-height: auto!important;" src="https://w0bm.com/loop/index.html"></iframe>
@else
<video class="video scrollable" loop id="video" controls>
<source src="//w0bm.com/b{{ "/" . $video->file }}">
</video>
@endif
</div>
@include('video-partials.legacy-videonav')
@include('video-partials.legacy-metadata')
@endsection