Files
Gw0bm/resources/views/layout5/layout.blade.php
2019-09-02 20:06:38 +00:00

96 lines
4.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html class="chrome-extension://clngdbkpkpeebahjckkjfobafhncgmne/edit.html" lang="de">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme-color" content="#161618">
<meta name="viewport"
content="width=device-width,initial-scale=1">
<meta charset="UTF-8">
<meta name="_token" content="{{csrf_token()}}">
<meta name="keywords" content="Random WebMs, WebMs, Internet Videos">
<meta name="Description" content="Tags:@if(isset($video)) {{ $video->getTagListAttribute() }} @endif">
<meta property="og:site_name" content="w0bm.com" />
<meta property="og:title" content="@if(!empty($video->interpret)){{$video->interpret}} {{$video->songtitle}}@else() NO DATA AVAILABLE ;__; @endif">
<meta property="og:description" content="Tags:@if(isset($video)) {{ $video->getTagListAttribute() }} @endif">
<meta property="og:image" content="@if(isset($video))https://w0bm.com/thumbs/{{str_replace(".webm","",$video->file)}}.gif"@endif/>
<meta property="og:video" content="@if(isset($video))https://b.w0bm.com/{{ $video->file }} @endif">
<meta property="og:url" content="@if(isset($video))https://w0bm.com/{{ $video->id }}@endif">
<meta property="og:video:secure_url" content="@if(isset($video))https://b.w0bm.com/{{ $video->file }} @endif">
<meta property="og:video:type" content="video/webm">
<link rel="icon" href="/favicon.png">
<title>@if(isset($video)){{ $video->id }} -@endif w0bm.com</title>
<link rel="favicon" href="favicon.ico" type="image/ico">
<link rel="stylesheet" href="/mobile/css/style.css">
<link rel="stylesheet" href="/mobile/css/w0bmfonts.css">
<link rel="stylesheet" href="/mobile/css/font-awesome.min.css">
<link rel="stylesheet" href="/mobile/css/bootstrap-tagsinput.css">
<link rel="stylesheet" href="/mobile/css/video-js.min.css">
<link rel="stylesheet" href="/mobile/css/simplebar.css" />
<link rel="stylesheet" href="/mobile/css/vjsnew.css?v=1.1.1">
<link rel="stylesheet" href="/mobile/css/w0bmcustom.css?v={{ filemtime("mobile/css/w0bmcustom.css") }}">
<link rel="alternate stylesheet" href="mobile/css/chilledblue.css?v={{ filemtime("mobile/css/chilledblue.css") }}" title="Chilledblue">
<link rel="alternate stylesheet" href="mobile/css/xayd.css?v={{ filemtime("mobile/css/xayd.css") }}" title="Xayd">
<link rel="alternate stylesheet" href="mobile/css/epilepsie.css?v={{ filemtime("mobile/css/epilepsie.css") }}" title="Epilepsie">
<script src="/mobile/js/styleswitcher.js"></script>
</head>
<body>
<div class="mobilefool"></div>
@if(auth()->check())
@include('partials.filterselect')
@if(isset($video) && (auth()->user()->can('edit_video') || auth()->user()->id == $video->user_id))
@include('partials.frontendedit')
@endif
@endif
@if(auth()->check())
@include('partials.navigation')
<div class="wrapper">
@yield('aside')
<div style="width: auto; overflow: hidden; position: relative;">
<noscript><div class="no-js">Javascript is disabled, enable to use all of w0bms features!</div></noscript>
<div class=" container">
@yield('content')
</div>
</div>
</div>
@else
<div class="wrapper">
<div class="container">
<a href="#" data-toggle="modal" data-target="#loginmodal"><video id="video-login" style="width: 100%;" autoplay loop src="https://w0bm.com/b/3.webm"></video></a>
@include('partials.loginmodal')
</div>
</div>
</div>
@endif
<script src="/mobile/js/jquery.min.js"></script>
<script src="/mobile/js/bootstrap.min.js"></script>
<script src="/mobile/js/bootstrap-tagsinput.min.js"></script>
<script src="/mobile/js/isotope.pkgd.min.js"></script>
<script src="/mobile/js/imagesloaded.pkgd.min.js"></script>
<script src="/mobile/js/jquery.timeago.js"></script>
<script src="/mobile/js/jquery.detectmobilebrowser.js"></script>
<script src="/mobile/js/video.min.js"></script>
<script src="/mobile/js/raven.min.js"></script>
<script src="/mobile/js/simplebar.js"></script>
<script src="/mobile/js/clipboard.min.js"></script>
<script>
var clipboard = new ClipboardJS('.copylink');
clipboard.on('success', function(e) {
console.info('Action:', e.action);
console.info('Text:', e.text);
console.info('Trigger:', e.trigger);
e.clearSelection();
});
clipboard.on('error', function(e) {
console.error('Action:', e.action);
console.error('Trigger:', e.trigger);
});
</script>
<script src="/mobile/js/w0bmscript.js?v={{ filemtime("mobile/js/w0bmscript.js") }}"></script>
</body>
</html>