2019-05-26 00:56:21 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@section('content')
|
2020-08-02 00:57:04 +00:00
|
|
|
<div class="bg-primary">
|
|
|
|
<p class="text-center text-white mb-0 py-3 font-weight-bold">
|
|
|
|
<i class="fas fa-exclamation-triangle fa-lg mr-2"></i> This feature has been deprecated and will be removed in a future version.
|
|
|
|
</p>
|
|
|
|
</div>
|
2019-05-27 00:42:12 +00:00
|
|
|
<div class="profile-header">
|
|
|
|
<div class="container pt-5">
|
|
|
|
<div class="profile-details text-center">
|
|
|
|
<div class="username-bar text-dark">
|
2019-05-28 05:08:08 +00:00
|
|
|
<p class="display-4 font-weight-bold mb-0"><span class="text-success">Loops</span> <sup class="lead">BETA</sup></p>
|
2019-05-27 00:42:12 +00:00
|
|
|
<p class="lead font-weight-lighter">Short looping videos</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="loop-page container mt-5">
|
|
|
|
<section>
|
|
|
|
<loops-component></loops-component>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
@endsection
|
2019-05-26 00:56:21 +00:00
|
|
|
|
2019-05-27 00:42:12 +00:00
|
|
|
@push('styles')
|
|
|
|
<style type="text/css">
|
|
|
|
@media (min-width: 1200px) {
|
|
|
|
.loop-page.container {
|
|
|
|
max-width: 1035px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
@endpush
|
|
|
|
@push('scripts')
|
|
|
|
<script type="text/javascript" src="{{ mix('js/loops.js') }}"></script>
|
|
|
|
<script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function(){
|
|
|
|
new Vue({el: '#content'});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endpush
|