diff --git a/.gitignore b/.gitignore index f097463..21e07c5 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ public/asbach/ public/images/ resources/views/unused/ app/Http/Controllers/tmp/test.png +public/d344.png diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php index fa5c2f6..5b761b0 100644 --- a/app/Http/Controllers/UserController.php +++ b/app/Http/Controllers/UserController.php @@ -151,8 +151,8 @@ class UserController extends Controller $validator = \Validator::make($request->all(), [ 'username' => 'required|unique:users|min:3|max:25|alpha_num', 'email' => 'required|email|unique:users|confirmed', - 'password' => 'required|min:128|confirmed', - 'captcha' => 'required|captcha' + // 'password' => 'required|min:6|confirmed', + // 'captcha' => 'required|captcha' ]); if($validator->fails()) { @@ -179,12 +179,12 @@ class UserController extends Controller // Send Mail \Mail::queue('emails.activation', $data, function($message) use ($user) { - $message->to($user->email, $user->username)->subject('Welcome to w0bm. Activate your account'); + $message->to($user->email, $user->username)->subject('Welcome to .-.- . Activate your account'); }); - return redirect('/login')->with('info', 'Congratulations! Your Account was successful created, please verify your email'); + return view('success')->with('info', 'Congratulations! Your Account was successful created, please verify your email'); } else { - return redirect()->back()->with('error', 'Account could not be created')->withInput($request->except(['password', 'password_confirmation'])); + return view()->with('error', 'Account could not be created')->withInput($request->except(['password', 'password_confirmation'])); } } @@ -460,4 +460,9 @@ class UserController extends Controller //return Response::create("success mothafukka, you can now go back and fap your dick", 200); return redirect()->back()->with('success', 'Jesus Scriptus is with you' ); } + public function settings(Request $request) { + return view('settings', [ + 'fuser' => 'pimmel', + ]); + } } diff --git a/app/Http/Controllers/tmp/test.png b/app/Http/Controllers/tmp/test.png index c956bfe..6f961a8 100644 Binary files a/app/Http/Controllers/tmp/test.png and b/app/Http/Controllers/tmp/test.png differ diff --git a/app/Http/routes.php b/app/Http/routes.php index 3d4bc28..a194734 100644 --- a/app/Http/routes.php +++ b/app/Http/routes.php @@ -130,13 +130,12 @@ Route::group(["middleware" => "theme"], function() { Route::get('upload', 'VideoController@create')->middleware('auth'); Route::get('categories', 'CategoryController@index'); Route::get('webm', function() { return view('webm'); })->middleware('auth'); - Route::get('settings', function() { return view('settings'); })->middleware('auth'); + Route::get('settings', 'UserController@settings'); Route::get('matrix', function() { return view('matrix'); })->middleware('auth'); Route::get('git', function() { return view('git'); }); #Route::get('about', function() { return view('about'); })->middleware('auth'); Route::get('about', 'aboutController@index'); - Route::get('irc', function() { return view('irc'); }); - Route::get('rules', 'rulezController@index'); + Route::get('rules', function() { return view('rulez'); }); #Route::get('tos', function() { return view('tos'); }); #Route::get('rulez', 'rulezController@index')->middleware('auth'); Route::get('todo', function() { return view('todo'); })->middleware('auth'); diff --git a/app/Models/Icon.php b/app/Models/Icon.php index 491fc55..a49019d 100644 --- a/app/Models/Icon.php +++ b/app/Models/Icon.php @@ -26,7 +26,7 @@ class Icon extends Model return ''; case 'img': case 'image': - return '' . $this->icon . ''; + return '' . $this->icon . ''; default: return ''; } diff --git a/app/Services/Markdown.php b/app/Services/Markdown.php index 4ace2e1..148f58c 100644 --- a/app/Services/Markdown.php +++ b/app/Services/Markdown.php @@ -55,7 +55,7 @@ class Markdown extends \Parsedown { 'handler' => 'line', 'attributes' => [ 'class' => 'comment_emoji', - 'src' => '//w0bm.com/images/comments/' . $matches[1] . $file_ext, + 'src' => '/images/comments/' . $matches[1] . $file_ext, 'alt' => ':' . $matches[1] . ':', 'title' => ':' . $matches[1] . ':' ], diff --git a/config/app.php b/config/app.php index 66c3b50..7497387 100644 --- a/config/app.php +++ b/config/app.php @@ -98,6 +98,14 @@ return [ 'log' => 'single', + /* VARS */ + + /* Iconic + >>Please stick to a single word as your iconic + */ + 'iconic' => env('ICONIC', 'iconic'), + + /* |-------------------------------------------------------------------------- | Autoloaded Service Providers diff --git a/database/seeds/CategorySeeder.php b/database/seeds/CategorySeeder.php index aae9c31..00141d9 100644 --- a/database/seeds/CategorySeeder.php +++ b/database/seeds/CategorySeeder.php @@ -13,52 +13,9 @@ class CategorySeeder extends Seeder public function run() { Category::create([ - 'name' => 'Musicvideos', - 'shortname' => 'mv', - 'description' => 'WebMs containing music' + 'name' => 'random', + 'shortname' => 'random', + 'description' => 'random' ]); - - Category::create([ - 'name' => 'Anime', - 'shortname' => 'anime', - 'description' => 'Everything from AMV to Hentai' - ]); - - Category::create([ - 'name' => 'Russia', - 'shortname' => 'russia', - 'description' => 'Сука Блять' - ]); - - Category::create([ - 'name' => 'Asians', - 'shortname' => 'asians', - 'description' => 'Mostly Korean and Japanese girls' - ]); - - Category::create([ - 'name' => 'Funny', - 'shortname' => 'funny', - 'description' => 'Supposed to be funny' - ]); - - Category::create([ - 'name' => 'Pr0n', - 'shortname' => 'pr0n', - 'description' => 'Crazy Japanese porn you will find my son' - ]); - - Category::create([ - 'name' => 'Politics', - 'shortname' => 'pol', - 'description' => 'Videos about faggots in suits' - ]); - - Category::create([ - 'name' => 'Misc', - 'shortname' => 'misc', - 'description' => 'Stuff that doesnt fit anywhere else' - ]); - } } diff --git a/database/seeds/VideoTableSeeder.php b/database/seeds/VideoTableSeeder.php index 7272a9d..c0a7946 100644 --- a/database/seeds/VideoTableSeeder.php +++ b/database/seeds/VideoTableSeeder.php @@ -21,7 +21,7 @@ class VideoTableSeeder extends Seeder return ($a < $b) ? -1 : 1; }); - $category = \App\Models\Category::where('shortname', '=', 'misc')->first(); + $category = \App\Models\Category::where('shortname', '=', 'random')->first(); $user = \App\Models\User::find(1); foreach($videos as $video) { diff --git a/public/css/glitch.css b/public/css/glitch.css index 57ce100..ccacc44 100644 --- a/public/css/glitch.css +++ b/public/css/glitch.css @@ -5,10 +5,12 @@ /* end */ a.navbar-brand { - content: ""; - background-size: contain; - background-image: url(/w0bm_mosh_banner_by_marderchen.gif); - background-repeat: no-repeat; + content: ""; + background-size: cover; + background-image: url(/traurig.gif); + background-repeat: no-repeat; + background-position-x: 0; + background-position-y: -60px; } a.navbar-brand { @@ -1095,17 +1097,6 @@ div#tag-display { color: #00fbff; } -/* Admin shizzle */ -a.sirx, a[href="https://w0bm.com/user/sirx"] { - color: #ff0099 !important; - text-transform: uppercase; - text-shadow: 1px 1px 2px #ff00c8, 0px -2px 0px black, 2px 0px #6eff00; - font-family: vcr; - vertical-align: middle; - padding-right: 5px; - padding-left: 5px; -} - ul.pagination { display: flex; justify-content: left; diff --git a/public/css/w0bm_override.css b/public/css/w0bm_override.css index 3ca4087..4d99251 100644 --- a/public/css/w0bm_override.css +++ b/public/css/w0bm_override.css @@ -78,7 +78,7 @@ span#w0bm_version { } .navbar-brand { - background-image: url(https://w0bm.com/w0bm_mosh_banner_by_marderchen.gif)!important; + background-image: url(/traurig.gif)!important; background-repeat: no-repeat!important; background-size: contain!important; background-position: center!important; diff --git a/public/css/w0bmcustom.css b/public/css/w0bmcustom.css index 89bd2f4..2bf733e 100644 --- a/public/css/w0bmcustom.css +++ b/public/css/w0bmcustom.css @@ -8,7 +8,7 @@ font-family: 'Oswald'; font-style: normal; font-weight: 400; - src: local('Oswald Regular'), local('Oswald-Regular'), url(//w0bm.com/fonts/Oswald_Cyrillic.woff2) format('woff2'); + src: local('Oswald Regular'), local('Oswald-Regular'), url(/fonts/Oswald_Cyrillic.woff2) format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* vietnamese */ @@ -16,7 +16,7 @@ font-family: 'Oswald'; font-style: normal; font-weight: 400; - src: local('Oswald Regular'), local('Oswald-Regular'), url(//w0bm.com/fonts/Odwald_Vietnamese.woff2) format('woff2'); + src: local('Oswald Regular'), local('Oswald-Regular'), url(/fonts/Odwald_Vietnamese.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @@ -24,7 +24,7 @@ font-family: 'Oswald'; font-style: normal; font-weight: 400; - src: local('Oswald Regular'), local('Oswald-Regular'), url(//w0bm.com/fonts/Oswald_Latin_ext.woff2) format('woff2'); + src: local('Oswald Regular'), local('Oswald-Regular'), url(/fonts/Oswald_Latin_ext.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @@ -32,7 +32,7 @@ font-family: 'Oswald'; font-style: normal; font-weight: 400; - src: local('Oswald Regular'), local('Oswald-Regular'), url(//w0bm.com/fonts/Oswald_latin.woff2) format('woff2'); + src: local('Oswald Regular'), local('Oswald-Regular'), url(/fonts/Oswald_latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* Oswal Test End */ @@ -44,7 +44,7 @@ font-family: 'Play'; font-style: normal; font-weight: 400; - src: local('Play Regular'), local('Play-Regular'), url(//w0bm.com/fonts/6aez4K2oVqwIvtg2H68T.woff2) format('woff2'); + src: local('Play Regular'), local('Play-Regular'), url(/fonts/6aez4K2oVqwIvtg2H68T.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @@ -52,7 +52,7 @@ font-family: 'Play'; font-style: normal; font-weight: 400; - src: local('Play Regular'), local('Play-Regular'), url(//w0bm.com/fonts/6aez4K2oVqwIvtE2H68T.woff2) format('woff2'); + src: local('Play Regular'), local('Play-Regular'), url(/fonts/6aez4K2oVqwIvtE2H68T.woff2) format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @@ -60,7 +60,7 @@ font-family: 'Play'; font-style: normal; font-weight: 400; - src: local('Play Regular'), local('Play-Regular'), url(//w0bm.com/fonts/6aez4K2oVqwIvtY2H68T.woff2) format('woff2'); + src: local('Play Regular'), local('Play-Regular'), url(/fonts/6aez4K2oVqwIvtY2H68T.woff2) format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @@ -68,7 +68,7 @@ font-family: 'Play'; font-style: normal; font-weight: 400; - src: local('Play Regular'), local('Play-Regular'), url(//w0bm.com/fonts/6aez4K2oVqwIvto2H68T.woff2) format('woff2'); + src: local('Play Regular'), local('Play-Regular'), url(/fonts/6aez4K2oVqwIvto2H68T.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @@ -76,7 +76,7 @@ font-family: 'Play'; font-style: normal; font-weight: 400; - src: local('Play Regular'), local('Play-Regular'), url(//w0bm.com/fonts/6aez4K2oVqwIvts2H68T.woff2) format('woff2'); + src: local('Play Regular'), local('Play-Regular'), url(/fonts/6aez4K2oVqwIvts2H68T.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @@ -84,7 +84,7 @@ font-family: 'Play'; font-style: normal; font-weight: 400; - src: local('Play Regular'), local('Play-Regular'), url(//w0bm.com/fonts/6aez4K2oVqwIvtU2Hw.woff2) format('woff2'); + src: local('Play Regular'), local('Play-Regular'), url(/fonts/6aez4K2oVqwIvtU2Hw.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* Play Font End */ @@ -153,7 +153,7 @@ body { opacity: 1; z-index: -1; position: fixed !important; - content: url(https://w0bm.com/rip_w.png); + content: url(https:/rip_w.png); right: 5px !important; }*/ @@ -1223,7 +1223,8 @@ a.delete-tag.default-link { } #sidebar > .comments, #sidebar > .tags { - border-bottom: 1px solid #1fb2b0; + border-bottom: 1px solid #2c2c2c; + /* actually important setting for the layout */ width: 350px; } @@ -1276,14 +1277,11 @@ div#tag-display::-webkit-scrollbar { label[for='tag-add-toggle'] { color: #1FB2B0; - padding-top: 10px; font-weight: normal; - padding-bottom: 5px; - margin-bottom: 0px; + padding: 5px; + margin: 0px; font-family: Oswald; cursor: pointer; - padding-right: 5px; - padding-left: 5px; transition-duration: 0.2s; -webkit-transition-duration: 0.2s; } @@ -1351,7 +1349,6 @@ span.addtagsy { font-family: Oswald; letter-spacing: 0.4px; cursor: pointer; - padding: 5px 5px; } span.addtagsy>a { @@ -3331,10 +3328,6 @@ img#thumbnail_img { margin-bottom: 5px; } -a[href="https://w0bm.com/user/thebigben"], a.thebigben, h3.thebigben { - font-family: unifrakturcook,cursive; -} - .no-js { position: absolute; font-size: 10px; @@ -3956,10 +3949,6 @@ video#placeholder { width: 100%; } -label[for='tag-add-toggle'] { - padding-top: 12px; -} - .nav>li>a:hover, .nav>li>a:focus { text-decoration: none; background-color: #12161900; @@ -4057,9 +4046,7 @@ position: absolute; left: 85px; font-family: vcr;} - label[for='tag-add-toggle'] { - padding-top: 10px; - } + i.fa.fa-bitcoin { color: #e2c910; diff --git a/public/favicon.gif b/public/favicon.gif new file mode 100644 index 0000000..045b2ae Binary files /dev/null and b/public/favicon.gif differ diff --git a/public/js/w0bmscript.js b/public/js/w0bmscript.js index 0f8a8f6..826e5bc 100644 --- a/public/js/w0bmscript.js +++ b/public/js/w0bmscript.js @@ -121,7 +121,7 @@ if(videoElem !== null) { if($.browser.mobile) { let src_split = document.querySelector("video > source:first-child").src.split("/"); src_split = src_split[src_split.length - 1]; - videoElem.setAttribute("poster", "//w0bm.com/thumbs/" + src_split.replace(".webm", ".gif")); + videoElem.setAttribute("poster", "/thumbs/" + src_split.replace(".webm", ".gif")); } var player = videojs(videoElem, { controls: true, @@ -1454,5 +1454,5 @@ document.querySelectorAll("#layoutSwitcher [id^=layout]").forEach(el => el.addEv // if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|ipad|iris|kindle|Android|Silk|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent) // || /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(navigator.userAgent.substr(0,4))) { // isMobile = true; -// window.location.href = "https://w0bm.com/api/user/layout?layout=5"; +// window.location.href = "https:/api/user/layout?layout=5"; // } \ No newline at end of file diff --git a/public/mobile/css/w0bmcustom.css b/public/mobile/css/w0bmcustom.css index f710eb5..4cd2a15 100644 --- a/public/mobile/css/w0bmcustom.css +++ b/public/mobile/css/w0bmcustom.css @@ -52,29 +52,10 @@ body { background-color: #161618; } -/*body::after { - bottom: -5px; - opacity: 1; - z-index: -1; - position: fixed !important; - content: url(https://w0bm.com/rip_w.png); - right: 5px !important; -}*/ - a:focus { outline: none; } -/*body::after { - position: fixed !important; - content: url("https://koyaanis.com/i/kawaii2.gif"); - bottom: -5px; - right: -20px !important; - left: 0px !important; - opacity: 1; - z-index: -1; -}*/ - .indexedit input, .indexedit select { display: none; } @@ -3193,10 +3174,6 @@ img#thumbnail_img { margin-bottom: 5px; } -a[href="https://w0bm.com/user/thebigben"], a.thebigben, h3.thebigben { - font-family: unifrakturcook,cursive; -} - .no-js { position: absolute; font-size: 10px; diff --git a/public/mobile/js/w0bmscript.js b/public/mobile/js/w0bmscript.js index cc08a15..dd0a350 100644 --- a/public/mobile/js/w0bmscript.js +++ b/public/mobile/js/w0bmscript.js @@ -121,7 +121,7 @@ if(videoElem !== null) { if($.browser.mobile) { let src_split = document.querySelector("video > source:first-child").src.split("/"); src_split = src_split[src_split.length - 1]; - videoElem.setAttribute("poster", "//b.w0bm.com/thumbs/" + src_split.replace(".webm", ".gif")); + videoElem.setAttribute("poster", "/thumbs/" + src_split.replace(".webm", ".gif")); } var player = videojs(videoElem, { controls: true, @@ -632,7 +632,7 @@ $(function() { $('[data-thumb]').on('mouseenter', function(e) { var id = $(this).data('thumb'); - var lnk = '//w0bm.com/thumbs/' + id + '.gif'; + var lnk = '/thumbs/' + id + '.gif'; var loc = get_loc(e); $(document.body).prepend('
'); $('div#thumb').prepend(''); @@ -1432,5 +1432,5 @@ if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine || /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(navigator.userAgent.substr(0,4))) { isMobile = true; } else { - window.location.href = "https://w0bm.com/api/user/layout?layout=1"; + window.location.href = "https:/api/user/layout?layout=1"; } \ No newline at end of file diff --git a/public/njum/js/w0bmscript.js b/public/njum/js/w0bmscript.js index 124f534..9ce76a4 100644 --- a/public/njum/js/w0bmscript.js +++ b/public/njum/js/w0bmscript.js @@ -121,7 +121,7 @@ if(videoElem !== null) { if($.browser.mobile) { let src_split = document.querySelector("video > source:first-child").src.split("/"); src_split = src_split[src_split.length - 1]; - videoElem.setAttribute("poster", "//w0bm.com/thumbs/" + src_split.replace(".webm", ".gif")); + videoElem.setAttribute("poster", "/thumbs/" + src_split.replace(".webm", ".gif")); } var player = videojs(videoElem, { controls: true, @@ -1430,9 +1430,9 @@ if(infoboxContent) //This was supposed to work for urls that are not in a correct url-sheme such as z0r.de/1337 but ehm itz out of biz cuz uhm xD https://f0ck.it/uploads/%5B2019%5D_firefox_YapokIcyShoveler.png //infoboxContent.dataset.content = infoboxContent.dataset.content.replace(/((https?:\/\/)?[\w-]+(\.[\w-]+)+\.?(:\d+)?(\/\S*)?)?/gi, "$1"); -if( /Android|webOS|iPhone|iPad|Mac|Macintosh|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) { - window.location.href = "https://w0bm.com/api/user/layout?layout=5"; -} +// if( /Android|webOS|iPhone|iPad|Mac|Macintosh|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) { +// window.location.href = "/api/user/layout?layout=5"; +// } /* $('#collapseEmojis').on('click', function (event) { let panelCollapse = $(this).closest('.panel').find('.collapseEmojis'); diff --git a/resources/views/errors/500.blade.php b/resources/views/errors/500.blade.php index a937529..8b7ea5d 100644 --- a/resources/views/errors/500.blade.php +++ b/resources/views/errors/500.blade.php @@ -2,13 +2,6 @@ body { background: black; color: white; - text-align: center; } - -
Oh shit! Something went horribly wrong!
-

Please try again later

- -
- if this error persists, please contact an admin in the IRC #w0bm -
+
Exception occured, to be excused
\ No newline at end of file diff --git a/resources/views/layout1/apply_open.blade.php b/resources/views/layout1/apply_open.blade.php index 4b4046b..788c795 100644 --- a/resources/views/layout1/apply_open.blade.php +++ b/resources/views/layout1/apply_open.blade.php @@ -2,8 +2,8 @@ @section('content') @include('partials.flash')
diff --git a/resources/views/layout1/contact.blade.php b/resources/views/layout1/contact.blade.php index 0f680e6..e6fddba 100644 --- a/resources/views/layout1/contact.blade.php +++ b/resources/views/layout1/contact.blade.php @@ -1,13 +1,2 @@ @extends('profilelayout') -@section('content') - -
- -

- For anything w0bm related you can either reach us via email: admin@w0bm.com or via our IRC -

-
-@include('footer') -@endsection + diff --git a/resources/views/layout1/footer.blade.php b/resources/views/layout1/footer.blade.php index bff5b03..f16b112 100644 --- a/resources/views/layout1/footer.blade.php +++ b/resources/views/layout1/footer.blade.php @@ -1,6 +1,5 @@ diff --git a/resources/views/layout1/index.blade.php b/resources/views/layout1/index.blade.php index eadd00d..eda7fea 100644 --- a/resources/views/layout1/index.blade.php +++ b/resources/views/layout1/index.blade.php @@ -4,7 +4,7 @@

Index {{ $number_of_results }} results

- {!! Form::text('q', isset($q) ? $q : null, ['class' => 'suchleiste', 'placeholder' => 'Search w0bm.com']) !!} + {!! Form::text('q', isset($q) ? $q : null, ['class' => 'suchleiste', 'placeholder' => 'Search']) !!}
diff --git a/resources/views/layout1/layout.blade.php b/resources/views/layout1/layout.blade.php index 0a3fae1..f394f69 100644 --- a/resources/views/layout1/layout.blade.php +++ b/resources/views/layout1/layout.blade.php @@ -8,11 +8,11 @@ content="width=device-width,initial-scale=1"> - + @if(auth()->check())@endif - + @if(auth()->check())@endif @@ -29,8 +29,8 @@ @if(auth()->check())@endif - - @if(isset($video)){{ $video->id }} -@endif w0bm.com + + {{ config('app.iconic') }} | @if(isset($video)){{ $video->id }}@endif diff --git a/resources/views/layout1/login.blade.php b/resources/views/layout1/login.blade.php index 05f87ca..c6397a3 100644 --- a/resources/views/layout1/login.blade.php +++ b/resources/views/layout1/login.blade.php @@ -18,9 +18,6 @@ - @endsection \ No newline at end of file diff --git a/resources/views/layout1/main.blade.php b/resources/views/layout1/main.blade.php index de4eb10..608a348 100644 --- a/resources/views/layout1/main.blade.php +++ b/resources/views/layout1/main.blade.php @@ -5,7 +5,7 @@ {!! $videos->render() !!} - {!! Form::text('q', isset($q) ? $q : null, ['class' => 'suchleiste', 'placeholder' => 'Search w0bm.com']) !!} + {!! Form::text('q', isset($q) ? $q : null, ['class' => 'suchleiste', 'placeholder' => 'Search']) !!} diff --git a/resources/views/layout1/partials/commentform.blade.php b/resources/views/layout1/partials/commentform.blade.php index 7855f52..fdf2e41 100644 --- a/resources/views/layout1/partials/commentform.blade.php +++ b/resources/views/layout1/partials/commentform.blade.php @@ -8,10 +8,10 @@
diff --git a/resources/views/layout1/partials/searchmodal.blade.php b/resources/views/layout1/partials/searchmodal.blade.php index 801fb5e..c189ff5 100644 --- a/resources/views/layout1/partials/searchmodal.blade.php +++ b/resources/views/layout1/partials/searchmodal.blade.php @@ -27,7 +27,7 @@
diff --git a/resources/views/layout1/partials/tags.blade.php b/resources/views/layout1/partials/tags.blade.php index 37db8d7..7257a28 100644 --- a/resources/views/layout1/partials/tags.blade.php +++ b/resources/views/layout1/partials/tags.blade.php @@ -1,17 +1,9 @@ -
- $commitID" - ?> -
diff --git a/resources/views/layout1/partials/themechanger.blade.php b/resources/views/layout1/partials/themechanger.blade.php index 8203485..6dc5869 100644 --- a/resources/views/layout1/partials/themechanger.blade.php +++ b/resources/views/layout1/partials/themechanger.blade.php @@ -7,14 +7,8 @@
-
- -
- -
+
-
- diff --git a/resources/views/layout1/privacy.blade.php b/resources/views/layout1/privacy.blade.php deleted file mode 100644 index 3955833..0000000 --- a/resources/views/layout1/privacy.blade.php +++ /dev/null @@ -1,26 +0,0 @@ -@extends('profilelayout') -@section('content') - - -
-
What do we log?
-

Our webserver does not log access log requests, we may log error logs from time to time if something breaks.

-
3rd party links
-

There are some 3rd party linkings on this website, be careful with clicking them we don't know whats inside the box blah blah blah, don't be stupid and don't trust the internet.

-

If you encounter a malicious link shared here on w0bm.com please notify an admin in the IRC

-

If you find a bug or a vulnerability, please notify an admin in the IRC

-
Cookies
-

Yes, we use cookies and if you don't like that don't come to our site! (or don't accept them in the first place) You can see the details of the cookies in your browser.

-

Spoiler: They are all relevant for the website to function properly!

- -
-@include('footer') -@endsection diff --git a/resources/views/layout1/profilelayout.blade.php b/resources/views/layout1/profilelayout.blade.php index 0d51ba3..3555d79 100644 --- a/resources/views/layout1/profilelayout.blade.php +++ b/resources/views/layout1/profilelayout.blade.php @@ -8,8 +8,8 @@ - - w0bm.com - WebMs with sound! + + {{ config('app.iconic') }} -

Rulez

- -
-
General
-
    - @foreach($generalrules as $rule) -
  1. {{$rule->rule}}
  2. - @endforeach -
-
-
-
Uploading
-
    - @foreach($uploadrules as $rule) -
  1. {!!$rule->rule!!}
  2. - @endforeach -
-
-
-
Tagging
-
    - @foreach($tagrules as $rule) -
  1. {!!$rule->rule!!}
  2. - @endforeach -
-
-
-
Commenting
-
    - @foreach($commentrules as $rule) -
  1. {!!$rule->rule!!}
  2. - @endforeach -
-
- @include('footer') @endsection diff --git a/resources/views/layout1/settings.blade.php b/resources/views/layout1/settings.blade.php index 13fbab4..2aa6139 100644 --- a/resources/views/layout1/settings.blade.php +++ b/resources/views/layout1/settings.blade.php @@ -1,17 +1,6 @@ - @extends('profilelayout') +@extends('profilelayout') @section('content') -

Layouts

-
Change how you experience w0bm.com
- + {{ $fuser }}
- @endsection \ No newline at end of file +@endsection \ No newline at end of file diff --git a/resources/views/layout1/success.blade.php b/resources/views/layout1/success.blade.php new file mode 100644 index 0000000..f6bf0fc --- /dev/null +++ b/resources/views/layout1/success.blade.php @@ -0,0 +1,2 @@ +Activate your account. +You should have received a mail \ No newline at end of file diff --git a/resources/views/layout2/about.blade.php b/resources/views/layout2/about.blade.php deleted file mode 100644 index 2a8b433..0000000 --- a/resources/views/layout2/about.blade.php +++ /dev/null @@ -1,7 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -
-{!!$blah!!} -
-@endsection - diff --git a/resources/views/layout2/abouttest.blade.php b/resources/views/layout2/abouttest.blade.php deleted file mode 100644 index 8ba19b2..0000000 --- a/resources/views/layout2/abouttest.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -{{$blah}} -@endsection \ No newline at end of file diff --git a/resources/views/layout2/banned.blade.php b/resources/views/layout2/banned.blade.php deleted file mode 100644 index d626301..0000000 --- a/resources/views/layout2/banned.blade.php +++ /dev/null @@ -1,24 +0,0 @@ -@extends('profilelayout') -@section('content') -
-
-

YOU ARE BANNED!

-
- -
-
-
- @if($perm) -

Your ban is permanent fool and will NOT expire!

- - @else -

Reason: {{ $user->banreason }}

-

Your ban will expire in {{ $user->banend->diffForHumans(null, true) }}

- - @endif -
-
-

If you think you were banned by accident or dindu nuffin to deserve the ban contact an administrator in the IRC

-
-
-@endsection diff --git a/resources/views/layout2/categories.blade.php b/resources/views/layout2/categories.blade.php deleted file mode 100644 index 0b14662..0000000 --- a/resources/views/layout2/categories.blade.php +++ /dev/null @@ -1,21 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') - -
-
- @foreach($categories as $category) -
-
- {{$category->name}} -
-
{{$category->name}} {{$category->videos()->count()}}
- {{$category->description}} -
-
-
- @endforeach -
-
-@endsection diff --git a/resources/views/layout2/change.blade.php b/resources/views/layout2/change.blade.php deleted file mode 100644 index 21ea187..0000000 --- a/resources/views/layout2/change.blade.php +++ /dev/null @@ -1,66 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') - -
-
-

Original in German

-
-
-RE: Content on w0bm
-
-Ich will keine Nachrichten, keine Politik, keinen Krieg und auch sonst keine zu mainstreamigen Sachen auf meiner Platform.
-Ich möchte das w0bm eine Page ist die lustiges und kurioses gezielt zur Schau stellt.
-Natürlich bin ich nicht alleiniger Entscheider darüber was potentiell als lustig, kurios oder anderweitig merkwürdig zu gelten hat,
-jedoch behalte ich mir vor das ganze in einem gewissen Rahmen zu formen, so ist nun der Zeitpunkt gekommen,
-an dem ich diese Formung verfestigen werde und in Futur 2 viele Uploads gelöscht haben werde.
-
-Die Löschung hat betroffen:
-
-Inhalte mit Nachrichten, Politik und Krieg.
-Inhalte mit Gore.
-
-Die vollständigen Kategorien:
-        politics, military, mett
-sind entfernt worden
-
-Ab sofort bitte keine Inhalte mit oben aufgeführten Kriterien mehr hochladen.
-
-Liebe Grüße
-
-Chatbot953
-                
-
-

English translation

-
-
-RE: Content on w0bm
-
-I don't want news, politics, war or anything too mainstream on my platform.
-I want w0bm to be a site that showcases funny and curious content.
-Of course, I am not the sole decider of what is potentially considered funny, curious or otherwise strange,
-but I reserve the right to shape the whole thing within a certain framework, so now the time has come,
-at which I will solidify this shaping and will have deleted many uploads in future tense 2.
-
-The deletion has affected:
-
-Content with news, politics and war.
-Content with Gore.
-
-The complete categories:
-        politics, military, mett
-have been removed
-
-From now on, please do not upload any content with the above criteria.
-
-Kind regards
-
-Chatbot953
-                
-
-
-
-@endsection - diff --git a/resources/views/layout2/close.sh b/resources/views/layout2/close.sh deleted file mode 100644 index 91e778e..0000000 --- a/resources/views/layout2/close.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -cd /home/sirx/web/w0bm.com/resources/views/ -ln -sf registerclosed.blade.php register.blade.php -php ../../artisan view:clear diff --git a/resources/views/layout2/closedreg.php b/resources/views/layout2/closedreg.php deleted file mode 100644 index dcf75af..0000000 --- a/resources/views/layout2/closedreg.php +++ /dev/null @@ -1,5 +0,0 @@ -@extends('layout') -@section('content') -
- - - - - - - - - - - - -
Report ReasonsReport Text
-
    - {!! $reportReasons !!} -
-
- {{$reportText}} -
- - -
- -
- - - - - - - - - - - -
Username{!! $username !!}
Video ID{{$videoID}}
-
- -
-
- - - - - - - \ No newline at end of file diff --git a/resources/views/layout2/errors/404.blade.php b/resources/views/layout2/errors/404.blade.php deleted file mode 100644 index 3a97175..0000000 --- a/resources/views/layout2/errors/404.blade.php +++ /dev/null @@ -1,7 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -
-

404 - NOT FOUND

- -
-@endsection diff --git a/resources/views/layout2/errors/500.blade.php b/resources/views/layout2/errors/500.blade.php deleted file mode 100644 index cb1712a..0000000 --- a/resources/views/layout2/errors/500.blade.php +++ /dev/null @@ -1,47 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') - - -
l0l! Something went wrong!
-
-
Please don't send this fucking text to an admin, we have other problems.
- - @if(!env('APP_DEBUG')) -
- {{bin2hex($iv)}}
- {{openssl_encrypt($exception, 'aes128', env('APP_KEY'), 0, $iv)}} -
- @else -
-
{{$exception}}
-
- @endif - -
-@endsection diff --git a/resources/views/layout2/errors/503.blade.php b/resources/views/layout2/errors/503.blade.php deleted file mode 100644 index 4f63d68..0000000 --- a/resources/views/layout2/errors/503.blade.php +++ /dev/null @@ -1,47 +0,0 @@ - - - - Please Stand By we are just fucking this up - - - - - -
-
-
Short maintenance, brb!
-
-
- - diff --git a/resources/views/layout2/footer.blade.php b/resources/views/layout2/footer.blade.php deleted file mode 100644 index 80c807c..0000000 --- a/resources/views/layout2/footer.blade.php +++ /dev/null @@ -1,6 +0,0 @@ - diff --git a/resources/views/layout2/git.blade.php b/resources/views/layout2/git.blade.php deleted file mode 100644 index d7e5519..0000000 --- a/resources/views/layout2/git.blade.php +++ /dev/null @@ -1,31 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -"; - echo "Latest commit"; - //echo "

$commitID

"; - echo "
$latestCommit
"; - echo ""; -} - -function getLastTenCommits() { - $lastTenCommits = shell_exec('git log -n 10'); - echo "
"; - echo "Last 10 Commits"; - echo "
$lastTenCommits
"; - echo "
"; -} - -echo "
"; -echo "
GIT LOG
"; -getLatestCommit(); -getLastTenCommits(); -echo "
"; -?> - -@endsection \ No newline at end of file diff --git a/resources/views/layout2/help.blade.php b/resources/views/layout2/help.blade.php deleted file mode 100644 index 7402c87..0000000 --- a/resources/views/layout2/help.blade.php +++ /dev/null @@ -1,7 +0,0 @@ -@extends('layout') -@section('content') - -@endsection - diff --git a/resources/views/layout2/index.blade.php b/resources/views/layout2/index.blade.php deleted file mode 100644 index b198ade..0000000 --- a/resources/views/layout2/index.blade.php +++ /dev/null @@ -1,87 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') - - - - - - - - - - - - - - @foreach($videos as $video) - file); - ?> - - - - - - - - - @endforeach - -
IDVideo TitleArtistSongtitleCategory
- @if($edit = auth()->check() && auth()->user()->can('edit_video')) -
- @endif -
- @if(isset($q) && $video->hasAllTags($q)) - {{$video->id}} - @else - {{$video->id}} - @endif - -
- @if($edit) - - @endif -
- {{$video->videotitle or ''}} - @if($edit) - - @endif - - {{$video->interpret or ''}} - @if($edit) - - @endif - - {{$video->songtitle or ''}} - @if($edit) - - @endif - - {{$video->category->name}} - @if($edit) - - @endif -
- -
- {!! $videos->render() !!} -
- -@endsection diff --git a/resources/views/layout2/irc.blade.php b/resources/views/layout2/irc.blade.php deleted file mode 100644 index d46724d..0000000 --- a/resources/views/layout2/irc.blade.php +++ /dev/null @@ -1,27 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') - -
-
-
IRC
-
irc.n0xy.net +6697 (ssl only) #w0bm
-

webirc.n0xy.net

-

More information: n0xy.net

-
[matrix]
-
#w0bm on the [matrix] network
-

#!w0bm:f0ck.it

-

Alternatively you can use the Element web client hosted at f0ck.it to connect to our channel, it has some modifications to make chatting more comfy:
Note: Registrations are disabled, you can still use this client with every homeserver you have an account on!

- -discord-no-way
Additional Redpill -
-{{--
- -
--}} -
-@endsection - diff --git a/resources/views/layout2/layout.blade.php b/resources/views/layout2/layout.blade.php deleted file mode 100644 index fcd065d..0000000 --- a/resources/views/layout2/layout.blade.php +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - @if(isset($video)){{ $video->id }} -@endif w0bm.com - - - - - - - - @if(auth()->check()) - @include('partials.frontendedit') - @include('partials.report') - @include('partials.filterselect') - @endif - -
- -
-
- @include('partials.navigation') - @include('partials.annouce') - @include('partials.flash') - - @yield('floatvid') - @include('partials.comments') -
-
-
- -
- - - - - - - - - - - diff --git a/resources/views/layout2/login.blade.php b/resources/views/layout2/login.blade.php deleted file mode 100644 index dad386d..0000000 --- a/resources/views/layout2/login.blade.php +++ /dev/null @@ -1,12 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -@include('partials.flash') -
- {!! csrf_field() !!} - - - Remember me
- - Register -
-@endsection diff --git a/resources/views/layout2/main.blade.php b/resources/views/layout2/main.blade.php deleted file mode 100644 index 85cdf15..0000000 --- a/resources/views/layout2/main.blade.php +++ /dev/null @@ -1,41 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -
- @foreach($videos as $video) - file); - ?> -
- @if(isset($q) && $video->hasAllTags($q)) - - - @else - - @endif - @if(file_exists(public_path() . '/thumbs/beta/'.$thumb.'.png')) - - @else - - @endif - -
- @endforeach -
- -
- {!! $videos->render() !!} -
-@endsection diff --git a/resources/views/layout2/marder.blade.php b/resources/views/layout2/marder.blade.php deleted file mode 100644 index 11ae7ad..0000000 --- a/resources/views/layout2/marder.blade.php +++ /dev/null @@ -1,24 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -

Hello everyone!

- -
- -

Today we have sad news, a beloved friend of us and one of our most unique members died.

-

Some of you may remember his unique and interesting and somewhat chaotic but cool videos.

-

Today we mourn the loss of our friend marderchen.

-

We sincerely hope you are at a better place now.

-

We thank you for the great time we had with you, you inspired many of us and brought joy to the IRC and to the website, you will be missed old friend.

- -

To say it in your words: =^_^= MEOW

- -

We have archived his long gone website, make sure to check it out! It is absolutely wild (only available in German)

- -

https://marderchen.totally.rip/marderchen.lima-city.de/index.html

- -

Also make sure to check out his uploads https://w0bm.com/main?q=marderchen and enjoy it.

- -

- w0bm staff

-
-@endsection - diff --git a/resources/views/layout2/matrix.blade.php b/resources/views/layout2/matrix.blade.php deleted file mode 100644 index f38731d..0000000 --- a/resources/views/layout2/matrix.blade.php +++ /dev/null @@ -1,100 +0,0 @@ - -
-
-

You are a slave {{Auth::user()->username}}

-
-

Take control over your chats, leave Discord for good!

-

Join [matrix] today!

-

Why should you consider either running a [matrix] synapse yourself or start using someone elses:

-

Discord is evil, it took away the freedom you and I deserve, it makes you a slave to their services,
makes you obey their rules, includes you in a unwanted botnet where you have no freedom at all!

-

It's time to break free {{Auth::user()->username}}

-

Choose your fate

- -

#!w0bm:f0ck.it

-
-

We are happy to help if you have any trouble setting up your synapse

-
-
- - - \ No newline at end of file diff --git a/resources/views/layout2/messages.blade.php b/resources/views/layout2/messages.blade.php deleted file mode 100644 index 2c7aed8..0000000 --- a/resources/views/layout2/messages.blade.php +++ /dev/null @@ -1,15 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -
-@include('partials.msglist') -
-
-
-
-
-
-
-

Select a message to display content

-
-
-@endsection diff --git a/resources/views/layout2/messages/commentanswer.blade.php b/resources/views/layout2/messages/commentanswer.blade.php deleted file mode 100644 index 9e16805..0000000 --- a/resources/views/layout2/messages/commentanswer.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -{{$user->username}} answered on your comment. -{{$user->username}} answered on your comment on the following video: /{{$video->id}} -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout2/messages/commentmention.blade.php b/resources/views/layout2/messages/commentmention.blade.php deleted file mode 100644 index ea15625..0000000 --- a/resources/views/layout2/messages/commentmention.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -

{{$user->username}} mentioned you in a comment.

-

{{$user->username}} mentioned you in a comment on the following video: /{{$video->id}}

-@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout2/messages/commentpreview.blade.php b/resources/views/layout2/messages/commentpreview.blade.php deleted file mode 100644 index 46f257e..0000000 --- a/resources/views/layout2/messages/commentpreview.blade.php +++ /dev/null @@ -1,6 +0,0 @@ -
-
- @simplemd($comment->content) -
- -
diff --git a/resources/views/layout2/messages/moderation/commentdelete.blade.php b/resources/views/layout2/messages/moderation/commentdelete.blade.php deleted file mode 100644 index 734b4b6..0000000 --- a/resources/views/layout2/messages/moderation/commentdelete.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -

A moderator deleted your comment.

-

A moderator deleted your comment on the following video: /{{$video->id}}

-

Reason: {{$reason}}

-@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout2/messages/moderation/commentrestore.blade.php b/resources/views/layout2/messages/moderation/commentrestore.blade.php deleted file mode 100644 index a8cf012..0000000 --- a/resources/views/layout2/messages/moderation/commentrestore.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -

A moderator restored your comment.

-

A moderator restored your comment on the following video: /{{$video->id}}

-

Reason: {{$reason}}

-@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout2/messages/moderation/videodelete.blade.php b/resources/views/layout2/messages/moderation/videodelete.blade.php deleted file mode 100644 index 6a6568b..0000000 --- a/resources/views/layout2/messages/moderation/videodelete.blade.php +++ /dev/null @@ -1,10 +0,0 @@ -

A moderator deleted your video.

-

A moderator deleted your video with the ID {{$video->id}}

-Video Info: - -

Reason: {{$reason}}

\ No newline at end of file diff --git a/resources/views/layout2/messages/videocomment.blade.php b/resources/views/layout2/messages/videocomment.blade.php deleted file mode 100644 index 6fd92f3..0000000 --- a/resources/views/layout2/messages/videocomment.blade.php +++ /dev/null @@ -1,2 +0,0 @@ -

{{$user->username}} made a comment on your video ID (/{{$video->id}})

-@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout2/nav.blade.php b/resources/views/layout2/nav.blade.php deleted file mode 100644 index 2ec3f72..0000000 --- a/resources/views/layout2/nav.blade.php +++ /dev/null @@ -1,42 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout2/open.sh b/resources/views/layout2/open.sh deleted file mode 100644 index ab6ca5a..0000000 --- a/resources/views/layout2/open.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -cd /home/sirx/web/w0bm.com/resources/views/ -ln -sf registeropen.blade.php register.blade.php -php ../../artisan view:clear diff --git a/resources/views/layout2/partials/annouce.blade.php b/resources/views/layout2/partials/annouce.blade.php deleted file mode 100644 index 242572d..0000000 --- a/resources/views/layout2/partials/annouce.blade.php +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout2/partials/banmenu.blade.php b/resources/views/layout2/partials/banmenu.blade.php deleted file mode 100644 index a1607d0..0000000 --- a/resources/views/layout2/partials/banmenu.blade.php +++ /dev/null @@ -1,27 +0,0 @@ -
- {!! csrf_field() !!} - -
diff --git a/resources/views/layout2/partials/comlist.php b/resources/views/layout2/partials/comlist.php deleted file mode 100644 index 8c0f191..0000000 --- a/resources/views/layout2/partials/comlist.php +++ /dev/null @@ -1,14 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout2/partials/comment.blade.php b/resources/views/layout2/partials/comment.blade.php deleted file mode 100644 index 17f9ced..0000000 --- a/resources/views/layout2/partials/comment.blade.php +++ /dev/null @@ -1,19 +0,0 @@ -
-
-
{!! $comment->user->displayName() !!} No. {{ $comment->id }} -
- @if($mod) - @if($del) - - @else - [del] - [edit] - @endif - @endif -
-
-
-
- @simplemd($comment->content) -
-
diff --git a/resources/views/layout2/partials/commentform.blade.php b/resources/views/layout2/partials/commentform.blade.php deleted file mode 100644 index a04b99e..0000000 --- a/resources/views/layout2/partials/commentform.blade.php +++ /dev/null @@ -1,40 +0,0 @@ -
-
-
- {!! csrf_field() !!} -
-
- {!! Form::textarea('comment', null, ['placeholder' => 'Write something...', 'id' => 'cinput', 'class' => 'form-control text-light comment-entry-textarea', 'required' => 'required']) !!} -
- -
- -
-
-
-
-
\ No newline at end of file diff --git a/resources/views/layout2/partials/comments.blade.php b/resources/views/layout2/partials/comments.blade.php deleted file mode 100644 index 15d5930..0000000 --- a/resources/views/layout2/partials/comments.blade.php +++ /dev/null @@ -1,31 +0,0 @@ -@if(Auth::check()) -
- -
-
-
- can('delete_comment'))) $comments = $video->comments()->withTrashed()->get(); - else $comments = $video->comments; - ?> - @if(count($comments) > 0) - @foreach($comments as $comment) - @include('partials.comment', ['comment' => $comment, 'mod' => $mod]) - @endforeach - @else -
-
- No comments yet! Be the first one to comment!
-
-
- @endif -
- @if($video->id == '30186') - @include('partials.thread_closed') - @else - @include('partials.commentform') - @endif -
-@endif diff --git a/resources/views/layout2/partials/filterselect.blade.php b/resources/views/layout2/partials/filterselect.blade.php deleted file mode 100644 index 8759e59..0000000 --- a/resources/views/layout2/partials/filterselect.blade.php +++ /dev/null @@ -1,18 +0,0 @@ - diff --git a/resources/views/layout2/partials/filtersettings.blade.php b/resources/views/layout2/partials/filtersettings.blade.php deleted file mode 100644 index 74eb84f..0000000 --- a/resources/views/layout2/partials/filtersettings.blade.php +++ /dev/null @@ -1,6 +0,0 @@ -@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 diff --git a/resources/views/layout2/partials/flash.blade.php b/resources/views/layout2/partials/flash.blade.php deleted file mode 100644 index 73335c1..0000000 --- a/resources/views/layout2/partials/flash.blade.php +++ /dev/null @@ -1,36 +0,0 @@ -
-
- @if($errors->count() > 0) - @foreach($errors->all() as $error) - - @endforeach - @endif - @if(Session::has('error')) - - @endif - @if(Session::has('success')) - - @endif - @if(Session::has('info')) - - @endif - @if(Session::has('warning')) - - @endif -
-
\ No newline at end of file diff --git a/resources/views/layout2/partials/footer-navigation.blade.php b/resources/views/layout2/partials/footer-navigation.blade.php deleted file mode 100644 index c9bfa74..0000000 --- a/resources/views/layout2/partials/footer-navigation.blade.php +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout2/partials/frontendedit.blade.php b/resources/views/layout2/partials/frontendedit.blade.php deleted file mode 100644 index 509dc61..0000000 --- a/resources/views/layout2/partials/frontendedit.blade.php +++ /dev/null @@ -1,59 +0,0 @@ -@if(isset($video)) -
- {!! csrf_field() !!} - -
-@endif diff --git a/resources/views/layout2/partials/handlebars.php b/resources/views/layout2/partials/handlebars.php deleted file mode 100644 index 3a70c75..0000000 --- a/resources/views/layout2/partials/handlebars.php +++ /dev/null @@ -1,22 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout2/partials/header.blade.php b/resources/views/layout2/partials/header.blade.php deleted file mode 100644 index e69de29..0000000 diff --git a/resources/views/layout2/partials/loginmodal.blade.php b/resources/views/layout2/partials/loginmodal.blade.php deleted file mode 100644 index 91551b0..0000000 --- a/resources/views/layout2/partials/loginmodal.blade.php +++ /dev/null @@ -1,25 +0,0 @@ - diff --git a/resources/views/layout2/partials/msglist.php b/resources/views/layout2/partials/msglist.php deleted file mode 100644 index 703afee..0000000 --- a/resources/views/layout2/partials/msglist.php +++ /dev/null @@ -1,31 +0,0 @@ - - - \ No newline at end of file diff --git a/resources/views/layout2/partials/navigation.blade.php b/resources/views/layout2/partials/navigation.blade.php deleted file mode 100644 index 82e413e..0000000 --- a/resources/views/layout2/partials/navigation.blade.php +++ /dev/null @@ -1,76 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout2/partials/profileheader.blade.php b/resources/views/layout2/partials/profileheader.blade.php deleted file mode 100644 index c9ebd0b..0000000 --- a/resources/views/layout2/partials/profileheader.blade.php +++ /dev/null @@ -1,18 +0,0 @@ - diff --git a/resources/views/layout2/partials/registermodal.blade.php b/resources/views/layout2/partials/registermodal.blade.php deleted file mode 100644 index d56589a..0000000 --- a/resources/views/layout2/partials/registermodal.blade.php +++ /dev/null @@ -1,62 +0,0 @@ - diff --git a/resources/views/layout2/partials/report.blade.php b/resources/views/layout2/partials/report.blade.php deleted file mode 100644 index 07de851..0000000 --- a/resources/views/layout2/partials/report.blade.php +++ /dev/null @@ -1,40 +0,0 @@ - -@if(isset($video)) -
- {!! csrf_field() !!} - -
-@endif \ No newline at end of file diff --git a/resources/views/layout2/partials/tags.blade.php b/resources/views/layout2/partials/tags.blade.php deleted file mode 100644 index 26b8293..0000000 --- a/resources/views/layout2/partials/tags.blade.php +++ /dev/null @@ -1,39 +0,0 @@ -
-
- @if(Auth::check()) -
-
-
-
- {{----}} - - -
-
-
-
- -
-
- @else - @endif -
- -
-
- @if(count($video->tags)) - @foreach($video->tags as $tag) - @if($tag == 'sfw') - @if(Auth::check() && Auth::user()->can('edit_video')){{$tag->name}}@else{{$tag->name}}@endif - @elseif($tag == 'nsfw') - @if(Auth::check() && Auth::user()->can('edit_video')){{$tag->name}}@else{{$tag->name}}@endif - @else - @if(Auth::check() && Auth::user()->can('edit_video')){{$tag->name}}@else{{$tag->name}}@endif - @endif - @endforeach - @else - No tags yet ... - @endif -
-
-
diff --git a/resources/views/layout2/partials/themechanger.blade.php b/resources/views/layout2/partials/themechanger.blade.php deleted file mode 100644 index 2efed41..0000000 --- a/resources/views/layout2/partials/themechanger.blade.php +++ /dev/null @@ -1,18 +0,0 @@ -
  • - - -
  • diff --git a/resources/views/layout2/partials/thread_closed.php b/resources/views/layout2/partials/thread_closed.php deleted file mode 100644 index 03d2e52..0000000 --- a/resources/views/layout2/partials/thread_closed.php +++ /dev/null @@ -1,3 +0,0 @@ -
    - Thread closed! ;__; -
    diff --git a/resources/views/layout2/partials/uploadinfo.blade.php b/resources/views/layout2/partials/uploadinfo.blade.php deleted file mode 100644 index 0653081..0000000 --- a/resources/views/layout2/partials/uploadinfo.blade.php +++ /dev/null @@ -1,20 +0,0 @@ -
    - -
    - @if(auth()->check()) - @if(auth()->user()->hasFaved($video->id)) - UNFAV - @else - FAV - @endif - @else - FAVED - @endif -
    -
    @if($video->interpret) Artist: {{$video->interpret}}
    @endif - @if($video->songtitle) Songtitle: {{$video->songtitle}}
    @endif - @if($video->imgsource) Video Source: {{$video->imgsource}}
    - @endif - Category: {{$video->category->name}}
    - uploaded by {!! $video->user->displayName() !!} @if(auth()->check() && (auth()->user()->can('edit_video') || auth()->user()->id == $video->user_id)) [edit]@endif @if(auth()->check() && auth()->user()->can('delete_video'))[del]@endif -
    diff --git a/resources/views/layout2/partials/videoinfo.blade.php b/resources/views/layout2/partials/videoinfo.blade.php deleted file mode 100644 index aba4c4b..0000000 --- a/resources/views/layout2/partials/videoinfo.blade.php +++ /dev/null @@ -1,35 +0,0 @@ -
    - @if($related) - @if(($prev = $video->getPrev($related)) === null) - - | - @else - 🡄 first - | - @endif - {!!$related->displayName()!!} - @if(($next = $video->getNext($related)) === null) - | - - @else - | - last 🡆 - @endif - @else - @if(($prev = $video->getPrev()) === null) - - | - @else - 🡄 first - | - @endif - random - @if(($next = $video->getNext()) === null) - | - - @else - | - last 🡆 - @endif - @endif -
    \ No newline at end of file diff --git a/resources/views/layout2/privacy.blade.php b/resources/views/layout2/privacy.blade.php deleted file mode 100644 index 1066ee4..0000000 --- a/resources/views/layout2/privacy.blade.php +++ /dev/null @@ -1,18 +0,0 @@ -@extends('profilelayout') -@section('content') - - -
    -
    What do we log?
    -

    We ourself don't log anything, cloudflare does log all the request that are being made to our site, we can however only access very little of it, no ips and only basic stats.

    -
    3rd party links
    -

    There are some 3rd party linkings on this website, be careful with clicking them we don't know whats inside the box blah blah blah, don't be stupid and don't trust the internet.

    -

    If you encounter a malicious link shared here on w0bm.com please notify an admin in the IRC.

    -

    We also use a webfont from google fonts, if you don't like that go fuck yourself or block it with umatrix.

    -
    Cookies
    -

    Yes, we use cookies if you don't like that don't come to our site! (or don't accept them in the first place)

    -
    -@include('footer') -@endsection diff --git a/resources/views/layout2/profile.blade.php b/resources/views/layout2/profile.blade.php deleted file mode 100644 index baf7fe5..0000000 --- a/resources/views/layout2/profile.blade.php +++ /dev/null @@ -1,35 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -@include('partials.profileheader') -
    - View {{ $title }} -
    - - - - - - - - - - - - - @foreach($videos as $video) - file); - ?> - - - - - - - - - @endforeach - -
    IDVideo TitleArtistSongtitleCategory
    {{$video->id}}{{$video->videotitle or ''}}{{$video->interpret or ''}}{{$video->songtitle or ''}}{{$video->category->name}}
    - {!! $videos->render() !!} -@endsection diff --git a/resources/views/layout2/profilelayout.blade.php b/resources/views/layout2/profilelayout.blade.php deleted file mode 100644 index a14c0c6..0000000 --- a/resources/views/layout2/profilelayout.blade.php +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - w0bm.com - - - - - - - @include('partials.handlebars') -@if(auth()->check()) - @include('partials.filterselect') - @if(isset($user) && auth()->user()->can('edit_user')) - @include('partials.banmenu') - @endif -@endif -
    -
    - @include('partials.navigation') - @include('partials.annouce') - @yield('novidcontent') -
    -
    - - - - - - - - - diff --git a/resources/views/layout2/register.blade.php b/resources/views/layout2/register.blade.php deleted file mode 100644 index bef7af1..0000000 --- a/resources/views/layout2/register.blade.php +++ /dev/null @@ -1,62 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -@include('partials.flash') - -
    -
    - {!! csrf_field() !!} -
    -
    - {!! Form::text('username', null, ['class' => 'form-control', 'placeholder' => 'Username']) !!} -
    -
    -
    -
    - {!! Form::email('email', null, ['class' => 'form-control', 'placeholder' => 'Email']) !!} -
    -
    -
    -
    - {!! Form::email('email_confirmation', null, ['class' => 'form-control', 'placeholder' => 'Email Confirmation']) !!} -
    -
    -
    -
    - {!! Form::password('password', ['class' => 'form-control', 'placeholder' => 'Password']) !!} -
    -
    -
    -
    - {!! Form::password('password_confirmation', ['class' => 'form-control', 'placeholder' => 'Password Confirmation']) !!} -
    -
    -
    -
    - {!! Recaptcha::render() !!} -
    -
    -
    -
    -

    I am at least 18 years or older and I have read and understand the Rules

    -
    -
    - -
    -
    -
    -
    - -@endsection - diff --git a/resources/views/layout2/registerclosed.blade.php b/resources/views/layout2/registerclosed.blade.php deleted file mode 100644 index f45f3d7..0000000 --- a/resources/views/layout2/registerclosed.blade.php +++ /dev/null @@ -1,34 +0,0 @@ -@extends('layout') -@section('content') - - -
    Oh shit! Something went wrong!
    -
    -
    Please don't send this fucking text to an admin, we have other problems.
    - - @if(!env('APP_DEBUG')) -
    - {{bin2hex($iv)}}
    - {{openssl_encrypt($exception, 'aes128', env('APP_KEY'), 0, $iv)}} -
    - @else -
    -
    {{$exception}}
    -
    - @endif - -
    -@include('footer') -@endsection diff --git a/resources/views/layout3/errors/503.blade.php b/resources/views/layout3/errors/503.blade.php deleted file mode 100644 index 4f63d68..0000000 --- a/resources/views/layout3/errors/503.blade.php +++ /dev/null @@ -1,47 +0,0 @@ - - - - Please Stand By we are just fucking this up - - - - - -
    -
    -
    Short maintenance, brb!
    -
    -
    - - diff --git a/resources/views/layout3/footer.blade.php b/resources/views/layout3/footer.blade.php deleted file mode 100644 index 954fee4..0000000 --- a/resources/views/layout3/footer.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -click here to get redirected, you have been successfully logged in! -@endsection diff --git a/resources/views/layout3/index.blade.php b/resources/views/layout3/index.blade.php deleted file mode 100644 index bb48b43..0000000 --- a/resources/views/layout3/index.blade.php +++ /dev/null @@ -1,80 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') - - - - - - - - - - - - - - @foreach($videos as $video) - file); - ?> - - - - - - - - - @endforeach - -
    IDVideo TitleArtistSongtitleCategory
    - @if($edit = auth()->check() && auth()->user()->can('edit_video')) -
    - @endif - {{$video->id}} - @if($edit) - - @endif -
    - {{$video->videotitle or ''}} - @if($edit) - - @endif - - {{$video->interpret or ''}} - @if($edit) - - @endif - - {{$video->songtitle or ''}} - @if($edit) - - @endif - - {{$video->category->name}} - @if($edit) - - @endif -
    - -
    - {!! $videos->render() !!} -
    - -@endsection diff --git a/resources/views/layout3/layout.blade.php b/resources/views/layout3/layout.blade.php deleted file mode 100644 index 1e57534..0000000 --- a/resources/views/layout3/layout.blade.php +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - @if(isset($video)){{ $video->id }} -@endif w0bm.com - - - - - - @if(auth()->check()) - @include('partials.report') - @include('partials.filterselect') - @endif - - @if(auth()->check()) - @if(auth()->user()->can('delete_video')) - @include('partials.frontendedit') - @endif - @endif - -
    -
    -
    - @if(auth()->check() && (auth()->user()->can("edit_video") || auth()->user()->id == $video->user_id)) [edit]@endif @if(auth()->check() && auth()->user()->can("delete_video"))[del]@endif -
    -
    - {{Auth::user()->username}} - [ {{Auth::user()->messagesRecv()->unread()->count()}} ] - [ filter ] - [ logout ] | - [ upload ] | - @if(auth()->check()) -@if(auth()->user()->hasFaved($video->id)) - - ❤️ [ faved ] -@else - - 🖤 [ fav ] -@endif -@else -@endif -
    - Random | - index | - categories | - IRC | - About | -
    - -
    -
    -
    -
    -
    - @yield('floatvid') - @include('partials.flash') - @include('partials.comments') -
    -
    -
    - - - -
    - - - - - - - - diff --git a/resources/views/layout3/main.blade.php b/resources/views/layout3/main.blade.php deleted file mode 100644 index c96cf84..0000000 --- a/resources/views/layout3/main.blade.php +++ /dev/null @@ -1,23 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -
    - @foreach($videos as $video) - file); - ?> -
    - -@if(file_exists(public_path() . '/thumbs/beta/'.$thumb.'.png')) - -@else - -@endif - -
    - @endforeach -
    - -
    - {!! $videos->render() !!} -
    -@endsection diff --git a/resources/views/layout3/marder.blade.php b/resources/views/layout3/marder.blade.php deleted file mode 100644 index 7d53282..0000000 --- a/resources/views/layout3/marder.blade.php +++ /dev/null @@ -1,24 +0,0 @@ -@extends('profilelayout') -@section('content') -

    Hello everyone!

    - -
    - -

    Today we have sad news, a beloved friend of us and one of our most unique members died.

    -

    Some of you may remember his unique and interesting and somewhat chaotic but cool videos.

    -

    Today we mourn the loss of our friend marderchen.

    -

    We sincerely hope you are at a better place now.

    -

    We thank you for the great time we had with you, you inspired many of us and brought joy to the IRC and to the website, you will be missed old friend.

    - -

    To say it in your words: =^_^= MEOW

    - -

    We have archived his long gone website, make sure to check it out! It is absolutely wild (only available in German)

    - -

    https://marderchen.totally.rip/marderchen.lima-city.de/index.html

    - -

    Also make sure to check out his uploads https://w0bm.com/main?q=marderchen and enjoy it.

    - -

    - w0bm staff

    -
    -@endsection - diff --git a/resources/views/layout3/matrix.blade.php b/resources/views/layout3/matrix.blade.php deleted file mode 100644 index f38731d..0000000 --- a/resources/views/layout3/matrix.blade.php +++ /dev/null @@ -1,100 +0,0 @@ - -
    -
    -

    You are a slave {{Auth::user()->username}}

    -
    -

    Take control over your chats, leave Discord for good!

    -

    Join [matrix] today!

    -

    Why should you consider either running a [matrix] synapse yourself or start using someone elses:

    -

    Discord is evil, it took away the freedom you and I deserve, it makes you a slave to their services,
    makes you obey their rules, includes you in a unwanted botnet where you have no freedom at all!

    -

    It's time to break free {{Auth::user()->username}}

    -

    Choose your fate

    - -

    #!w0bm:f0ck.it

    -
    -

    We are happy to help if you have any trouble setting up your synapse

    -
    -
    - - - \ No newline at end of file diff --git a/resources/views/layout3/messages.blade.php b/resources/views/layout3/messages.blade.php deleted file mode 100644 index 06bc591..0000000 --- a/resources/views/layout3/messages.blade.php +++ /dev/null @@ -1,13 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -@include('partials.msglist') -
    -
    -
    -
    -
    -
    -
    -

    Select a message to display content

    -
    -@endsection diff --git a/resources/views/layout3/messages/commentanswer.blade.php b/resources/views/layout3/messages/commentanswer.blade.php deleted file mode 100644 index 5fa7616..0000000 --- a/resources/views/layout3/messages/commentanswer.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -

    {{$user->username}} answered on your comment.

    -

    {{$user->username}} answered on your comment on the following video: /{{$video->id}}

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout3/messages/commentmention.blade.php b/resources/views/layout3/messages/commentmention.blade.php deleted file mode 100644 index ea15625..0000000 --- a/resources/views/layout3/messages/commentmention.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -

    {{$user->username}} mentioned you in a comment.

    -

    {{$user->username}} mentioned you in a comment on the following video: /{{$video->id}}

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout3/messages/commentpreview.blade.php b/resources/views/layout3/messages/commentpreview.blade.php deleted file mode 100644 index 46f257e..0000000 --- a/resources/views/layout3/messages/commentpreview.blade.php +++ /dev/null @@ -1,6 +0,0 @@ -
    -
    - @simplemd($comment->content) -
    - -
    diff --git a/resources/views/layout3/messages/moderation/commentdelete.blade.php b/resources/views/layout3/messages/moderation/commentdelete.blade.php deleted file mode 100644 index 734b4b6..0000000 --- a/resources/views/layout3/messages/moderation/commentdelete.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -

    A moderator deleted your comment.

    -

    A moderator deleted your comment on the following video: /{{$video->id}}

    -

    Reason: {{$reason}}

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout3/messages/moderation/commentrestore.blade.php b/resources/views/layout3/messages/moderation/commentrestore.blade.php deleted file mode 100644 index a8cf012..0000000 --- a/resources/views/layout3/messages/moderation/commentrestore.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -

    A moderator restored your comment.

    -

    A moderator restored your comment on the following video: /{{$video->id}}

    -

    Reason: {{$reason}}

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout3/messages/moderation/videodelete.blade.php b/resources/views/layout3/messages/moderation/videodelete.blade.php deleted file mode 100644 index 6a6568b..0000000 --- a/resources/views/layout3/messages/moderation/videodelete.blade.php +++ /dev/null @@ -1,10 +0,0 @@ -

    A moderator deleted your video.

    -

    A moderator deleted your video with the ID {{$video->id}}

    -Video Info: - -

    Reason: {{$reason}}

    \ No newline at end of file diff --git a/resources/views/layout3/messages/videocomment.blade.php b/resources/views/layout3/messages/videocomment.blade.php deleted file mode 100644 index 48e43c4..0000000 --- a/resources/views/layout3/messages/videocomment.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -

    New comment on your video /{{$video->id}}

    -

    {{$user->username}} made a comment on your video.

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout3/partials/banmenu.blade.php b/resources/views/layout3/partials/banmenu.blade.php deleted file mode 100644 index a1607d0..0000000 --- a/resources/views/layout3/partials/banmenu.blade.php +++ /dev/null @@ -1,27 +0,0 @@ -
    - {!! csrf_field() !!} - -
    diff --git a/resources/views/layout3/partials/comlist.php b/resources/views/layout3/partials/comlist.php deleted file mode 100644 index 8c0f191..0000000 --- a/resources/views/layout3/partials/comlist.php +++ /dev/null @@ -1,14 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout3/partials/comment.blade.php b/resources/views/layout3/partials/comment.blade.php deleted file mode 100644 index 6547f98..0000000 --- a/resources/views/layout3/partials/comment.blade.php +++ /dev/null @@ -1,22 +0,0 @@ -
    -
    -
    - -
    - {!! $comment->user->displayName() !!} - {{$video->created_at->diffForHumans()}} - @if($mod) - @if($del) - - @else - [D] - {{-- [E] --}} - @endif - @endif -
    - @simplemd($comment->content) -
    -
    - -
    diff --git a/resources/views/layout3/partials/commentform.blade.php b/resources/views/layout3/partials/commentform.blade.php deleted file mode 100644 index 0fe27ef..0000000 --- a/resources/views/layout3/partials/commentform.blade.php +++ /dev/null @@ -1,34 +0,0 @@ -
    -
    -
    - {!! csrf_field() !!} -
    -
    - {!! Form::textarea('comment', null, ['placeholder' => 'Write something...', 'id' => 'cinput', 'class' => 'form-control text-light comment-entry-textarea', 'required' => 'required']) !!} -
    - -
    - -
    -
    -
    -
    -
    \ No newline at end of file diff --git a/resources/views/layout3/partials/comments.blade.php b/resources/views/layout3/partials/comments.blade.php deleted file mode 100644 index 3293a56..0000000 --- a/resources/views/layout3/partials/comments.blade.php +++ /dev/null @@ -1,31 +0,0 @@ -@if(Auth::check()) -
    - -
    -
    - @if($video->id == '30186') - @include('partials.thread_closed') - @else - @include('partials.commentform') - @endif -
    - can('delete_comment'))) $comments = $video->comments()->withTrashed()->get(); - else $comments = $video->comments; - ?> - @if(count($comments) > 0) - @foreach($comments as $comment) - @include('partials.comment', ['comment' => $comment, 'mod' => $mod]) - @endforeach - @else -
    -
    - No comments yet! Be the first one to comment!
    -
    -
    - @endif -
    -
    -@endif diff --git a/resources/views/layout3/partials/disqusw0bm.blade.php b/resources/views/layout3/partials/disqusw0bm.blade.php deleted file mode 100644 index 331aa7c..0000000 --- a/resources/views/layout3/partials/disqusw0bm.blade.php +++ /dev/null @@ -1,20 +0,0 @@ -
    - - \ No newline at end of file diff --git a/resources/views/layout3/partials/filterselect.blade.php b/resources/views/layout3/partials/filterselect.blade.php deleted file mode 100644 index 3d2925f..0000000 --- a/resources/views/layout3/partials/filterselect.blade.php +++ /dev/null @@ -1,18 +0,0 @@ - diff --git a/resources/views/layout3/partials/filtersettings.blade.php b/resources/views/layout3/partials/filtersettings.blade.php deleted file mode 100644 index 74eb84f..0000000 --- a/resources/views/layout3/partials/filtersettings.blade.php +++ /dev/null @@ -1,6 +0,0 @@ -@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 diff --git a/resources/views/layout3/partials/flash.blade.php b/resources/views/layout3/partials/flash.blade.php deleted file mode 100644 index 73335c1..0000000 --- a/resources/views/layout3/partials/flash.blade.php +++ /dev/null @@ -1,36 +0,0 @@ -
    -
    - @if($errors->count() > 0) - @foreach($errors->all() as $error) - - @endforeach - @endif - @if(Session::has('error')) - - @endif - @if(Session::has('success')) - - @endif - @if(Session::has('info')) - - @endif - @if(Session::has('warning')) - - @endif -
    -
    \ No newline at end of file diff --git a/resources/views/layout3/partials/footer-navigation.blade.php b/resources/views/layout3/partials/footer-navigation.blade.php deleted file mode 100644 index c9bfa74..0000000 --- a/resources/views/layout3/partials/footer-navigation.blade.php +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout3/partials/frontendedit.blade.php b/resources/views/layout3/partials/frontendedit.blade.php deleted file mode 100644 index 7b9e42a..0000000 --- a/resources/views/layout3/partials/frontendedit.blade.php +++ /dev/null @@ -1,52 +0,0 @@ -@if(isset($video)) -
    - {!! csrf_field() !!} - -
    -@endif diff --git a/resources/views/layout3/partials/handlebars.php b/resources/views/layout3/partials/handlebars.php deleted file mode 100644 index 3a70c75..0000000 --- a/resources/views/layout3/partials/handlebars.php +++ /dev/null @@ -1,22 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout3/partials/header.blade.php b/resources/views/layout3/partials/header.blade.php deleted file mode 100644 index e69de29..0000000 diff --git a/resources/views/layout3/partials/loginmodal.blade.php b/resources/views/layout3/partials/loginmodal.blade.php deleted file mode 100644 index 91551b0..0000000 --- a/resources/views/layout3/partials/loginmodal.blade.php +++ /dev/null @@ -1,25 +0,0 @@ - diff --git a/resources/views/layout3/partials/msglist.php b/resources/views/layout3/partials/msglist.php deleted file mode 100644 index 703afee..0000000 --- a/resources/views/layout3/partials/msglist.php +++ /dev/null @@ -1,31 +0,0 @@ - - - \ No newline at end of file diff --git a/resources/views/layout3/partials/navigation.blade.php b/resources/views/layout3/partials/navigation.blade.php deleted file mode 100644 index e4f9067..0000000 --- a/resources/views/layout3/partials/navigation.blade.php +++ /dev/null @@ -1,64 +0,0 @@ - diff --git a/resources/views/layout3/partials/profileheader.blade.php b/resources/views/layout3/partials/profileheader.blade.php deleted file mode 100644 index e1524c5..0000000 --- a/resources/views/layout3/partials/profileheader.blade.php +++ /dev/null @@ -1,15 +0,0 @@ - diff --git a/resources/views/layout3/partials/registermodal.blade.php b/resources/views/layout3/partials/registermodal.blade.php deleted file mode 100644 index d56589a..0000000 --- a/resources/views/layout3/partials/registermodal.blade.php +++ /dev/null @@ -1,62 +0,0 @@ - diff --git a/resources/views/layout3/partials/report.blade.php b/resources/views/layout3/partials/report.blade.php deleted file mode 100644 index 172ff4e..0000000 --- a/resources/views/layout3/partials/report.blade.php +++ /dev/null @@ -1,40 +0,0 @@ - -@if(isset($video)) -
    - {!! csrf_field() !!} - -
    -@endif \ No newline at end of file diff --git a/resources/views/layout3/partials/tags-light.blade.php b/resources/views/layout3/partials/tags-light.blade.php deleted file mode 100644 index 07b3a6c..0000000 --- a/resources/views/layout3/partials/tags-light.blade.php +++ /dev/null @@ -1,15 +0,0 @@ -
    - @if(count($video->tags)) - @foreach($video->tags as $tag) - @if($tag == 'sfw') - {{$tag->name}}@if(Auth::check() && Auth::user()->can('edit_video')) @endif - @elseif($tag == 'nsfw') - {{$tag->name}}@if(Auth::check() && Auth::user()->can('edit_video')) @endif - @else - {{$tag->name}}@if(Auth::check() && Auth::user()->can('edit_video')) @endif - @endif - @endforeach - @else - No tags yet ... - @endif -
    diff --git a/resources/views/layout3/partials/tags.blade.php b/resources/views/layout3/partials/tags.blade.php deleted file mode 100644 index ea14f49..0000000 --- a/resources/views/layout3/partials/tags.blade.php +++ /dev/null @@ -1,39 +0,0 @@ -
    -
    - @if(Auth::check()) -
    -
    -
    -
    - {{----}} - - -
    -
    -
    -
    - -
    -
    - @else - @endif -
    - -
    -
    - @if(count($video->tags)) - @foreach($video->tags as $tag) - @if($tag == 'sfw') - {{$tag->name}}@if(Auth::check() && Auth::user()->can('edit_video')) @endif - @elseif($tag == 'nsfw') - {{$tag->name}}@if(Auth::check() && Auth::user()->can('edit_video')) @endif - @else - {{$tag->name}}@if(Auth::check() && Auth::user()->can('edit_video')) @endif - @endif - @endforeach - @else - No tags yet ... - @endif -
    -
    -
    diff --git a/resources/views/layout3/partials/themechanger.blade.php b/resources/views/layout3/partials/themechanger.blade.php deleted file mode 100644 index 2efed41..0000000 --- a/resources/views/layout3/partials/themechanger.blade.php +++ /dev/null @@ -1,18 +0,0 @@ -
  • - - -
  • diff --git a/resources/views/layout3/partials/thread_closed.php b/resources/views/layout3/partials/thread_closed.php deleted file mode 100644 index 03d2e52..0000000 --- a/resources/views/layout3/partials/thread_closed.php +++ /dev/null @@ -1,3 +0,0 @@ -
    - Thread closed! ;__; -
    diff --git a/resources/views/layout3/partials/uploadinfo.blade.php b/resources/views/layout3/partials/uploadinfo.blade.php deleted file mode 100644 index 0653081..0000000 --- a/resources/views/layout3/partials/uploadinfo.blade.php +++ /dev/null @@ -1,20 +0,0 @@ -
    - -
    - @if(auth()->check()) - @if(auth()->user()->hasFaved($video->id)) - UNFAV - @else - FAV - @endif - @else - FAVED - @endif -
    -
    @if($video->interpret) Artist: {{$video->interpret}}
    @endif - @if($video->songtitle) Songtitle: {{$video->songtitle}}
    @endif - @if($video->imgsource) Video Source: {{$video->imgsource}}
    - @endif - Category: {{$video->category->name}}
    - uploaded by {!! $video->user->displayName() !!} @if(auth()->check() && (auth()->user()->can('edit_video') || auth()->user()->id == $video->user_id)) [edit]@endif @if(auth()->check() && auth()->user()->can('delete_video'))[del]@endif -
    diff --git a/resources/views/layout3/partials/videoinfo.blade.php b/resources/views/layout3/partials/videoinfo.blade.php deleted file mode 100644 index aba4c4b..0000000 --- a/resources/views/layout3/partials/videoinfo.blade.php +++ /dev/null @@ -1,35 +0,0 @@ -
    - @if($related) - @if(($prev = $video->getPrev($related)) === null) - - | - @else - 🡄 first - | - @endif - {!!$related->displayName()!!} - @if(($next = $video->getNext($related)) === null) - | - - @else - | - last 🡆 - @endif - @else - @if(($prev = $video->getPrev()) === null) - - | - @else - 🡄 first - | - @endif - random - @if(($next = $video->getNext()) === null) - | - - @else - | - last 🡆 - @endif - @endif -
    \ No newline at end of file diff --git a/resources/views/layout3/profile.blade.php b/resources/views/layout3/profile.blade.php deleted file mode 100644 index cf02c5b..0000000 --- a/resources/views/layout3/profile.blade.php +++ /dev/null @@ -1,35 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -@include('partials.profileheader') -
    - View {{ $title }} -
    - - - - - - - - - - - - - @foreach($videos as $video) - file); - ?> - - - - - - - - - @endforeach - -
    IDVideo TitleArtistSongtitleCategory
    {{$video->id}}{{$video->videotitle or ''}}{{$video->interpret or ''}}{{$video->songtitle or ''}}{{$video->category->name}}
    - {!! $videos->render() !!} -@endsection diff --git a/resources/views/layout3/profilelayout.blade.php b/resources/views/layout3/profilelayout.blade.php deleted file mode 100644 index 8671ebe..0000000 --- a/resources/views/layout3/profilelayout.blade.php +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - @if(isset($video)){{ $video->id }} -@endif w0bm.com - - - - - - @include('partials.handlebars') -@if(auth()->check()) - @include('partials.filterselect') - @if(isset($user) && auth()->user()->can('edit_user')) - @include('partials.banmenu') - @endif -@endif -
    -
    - Random | - index | - categories | - IRC | - About | -
    - -
    - -
    - {{Auth::user()->username}} - [ {{Auth::user()->messagesRecv()->unread()->count()}} ] - [ filter ] - [ logout ] | - [ upload ] -
    -
    - @yield('novidcontent') -
    -
    - - - - - - - - - \ No newline at end of file diff --git a/resources/views/layout3/rulez.blade.php b/resources/views/layout3/rulez.blade.php deleted file mode 100644 index 0f293b0..0000000 --- a/resources/views/layout3/rulez.blade.php +++ /dev/null @@ -1,38 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') - -
    -
    General
    -
      - @foreach($generalrules as $rule) -
    1. {{$rule->rule}}
    2. - @endforeach -
    -
    -
    -
    Uploading
    -
      - @foreach($uploadrules as $rule) -
    1. {!!$rule->rule!!}
    2. - @endforeach -
    -
    -
    -
    Tagging
    -
      - @foreach($tagrules as $rule) -
    1. {!!$rule->rule!!}
    2. - @endforeach -
    -
    -
    -
    Commenting
    -
      - @foreach($commentrules as $rule) -
    1. {!!$rule->rule!!}
    2. - @endforeach -
    -
    -@endsection \ No newline at end of file diff --git a/resources/views/layout3/settings.blade.php b/resources/views/layout3/settings.blade.php deleted file mode 100644 index 13fbab4..0000000 --- a/resources/views/layout3/settings.blade.php +++ /dev/null @@ -1,17 +0,0 @@ - @extends('profilelayout') -@section('content') -

    Layouts

    -
    -
    Change how you experience w0bm.com
    - -
    - @endsection \ No newline at end of file diff --git a/resources/views/layout3/stats.blade.php b/resources/views/layout3/stats.blade.php deleted file mode 100644 index d705daf..0000000 --- a/resources/views/layout3/stats.blade.php +++ /dev/null @@ -1,14 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') - -
    -

    Total amount of registered users: {{$user_count}}

    -

    Total amount of uploads: {{$upload_count}}

    -

    Total amount of comments: {{$comment_count}}

    -

    Latest video /{{$latest_video}}

    -

    Newest user /user/{{$newest_user}}

    -

    Total size of w0bm: {{$dirsize}}

    -
    -@endsection diff --git a/resources/views/layout3/upload.blade.php b/resources/views/layout3/upload.blade.php deleted file mode 100644 index 3f8052c..0000000 --- a/resources/views/layout3/upload.blade.php +++ /dev/null @@ -1,48 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -
    - -
    - - - - -@endsection diff --git a/resources/views/layout3/vendor/.gitkeep b/resources/views/layout3/vendor/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/resources/views/layout3/video-partials/disqus.blade.php b/resources/views/layout3/video-partials/disqus.blade.php deleted file mode 100644 index 7cee7e9..0000000 --- a/resources/views/layout3/video-partials/disqus.blade.php +++ /dev/null @@ -1,21 +0,0 @@ -
    - - - \ No newline at end of file diff --git a/resources/views/layout3/video-partials/legacy-metadata.blade.php b/resources/views/layout3/video-partials/legacy-metadata.blade.php deleted file mode 100644 index 03cff33..0000000 --- a/resources/views/layout3/video-partials/legacy-metadata.blade.php +++ /dev/null @@ -1,52 +0,0 @@ - diff --git a/resources/views/layout3/video-partials/legacy-videonav.blade.php b/resources/views/layout3/video-partials/legacy-videonav.blade.php deleted file mode 100644 index d465a85..0000000 --- a/resources/views/layout3/video-partials/legacy-videonav.blade.php +++ /dev/null @@ -1,35 +0,0 @@ -
    -@if($related) - @if(($prev = $video->getPrev($related)) === null) -
    -
    | - @else - -
    | - @endif - {!!$related->displayName()!!} - @if(($next = $video->getNext($related)) === null) - |
    - - @else - |
    -
    last »
    - @endif - @else - @if(($prev = $video->getPrev()) === null) -
    -
    | - @else - -
    | - @endif - random - @if(($next = $video->getNext()) === null) - |
    - - @else - |
    -
    last »
    - @endif - @endif -
    \ No newline at end of file diff --git a/resources/views/layout3/video-partials/popover-metadata.blade.php b/resources/views/layout3/video-partials/popover-metadata.blade.php deleted file mode 100644 index a837915..0000000 --- a/resources/views/layout3/video-partials/popover-metadata.blade.php +++ /dev/null @@ -1,44 +0,0 @@ -
    - @if($video->videotitle)
    - Videotitle: {{$video->videotitle}} -
    @endif - @if($video->interpret)
    - Artist: {{$video->interpret}} -
    @endif - @if($video->songtitle)
    - Songtitle: {{$video->songtitle}} -
    @endif - @if($video->imgsource)
    - Video Source: {{$video->imgsource}} -
    @endif -
    - Category: {{$video->category->name}} -
    -
    - Uploader: user->username) }}">{!! $video->user->displayName() !!} -
    -
    - Added: {{$video->created_at->diffForHumans()}} -
    - {{--
    - {{ HumanReadable::bytesToHuman($video->filesize()) }} -
    --}} -
    -
    -
    - @if(count($video->tags)) - @foreach($video->tags as $tag) - @if($tag == 'sfw') - {{$tag->name}} - @elseif($tag == 'nsfw') - {{$tag->name}} - @else - {{$tag->name}} - @endif - @endforeach - @else - No tags yet ... - @endif -
    -
    -
    \ No newline at end of file diff --git a/resources/views/layout3/video-partials/video-fav.blade.php b/resources/views/layout3/video-partials/video-fav.blade.php deleted file mode 100644 index 8488b1c..0000000 --- a/resources/views/layout3/video-partials/video-fav.blade.php +++ /dev/null @@ -1,12 +0,0 @@ - -
    - @if(auth()->check()) - @if(auth()->user()->hasFaved($video->id)) - UNFAV - @else - FAV - @endif - @else - FAVED - @endif -
    \ No newline at end of file diff --git a/resources/views/layout3/video-partials/video-matadata-overlay.blade.php b/resources/views/layout3/video-partials/video-matadata-overlay.blade.php deleted file mode 100644 index ce6e361..0000000 --- a/resources/views/layout3/video-partials/video-matadata-overlay.blade.php +++ /dev/null @@ -1,17 +0,0 @@ -
    - @if($video->interpret)
    - Artist: {{$video->interpret}} -
    @endif - @if($video->songtitle)
    - Songtitle: {{$video->songtitle}} -
    @endif - @if($video->imgsource)
    - Video Source: {{$video->imgsource}} -
    @endif -
    - Category: {{$video->category->name}} -
    -
    - Uploader: {!! $video->user->displayName() !!} -
    -
    diff --git a/resources/views/layout3/video-partials/video-metadata.blade.php b/resources/views/layout3/video-partials/video-metadata.blade.php deleted file mode 100644 index c21d20d..0000000 --- a/resources/views/layout3/video-partials/video-metadata.blade.php +++ /dev/null @@ -1,33 +0,0 @@ -
    - - @if(auth()->check() && (auth()->user()->can("edit_video") || auth()->user()->id == $video->user_id)) [edit]@endif @if(auth()->check() && auth()->user()->can("delete_video"))[del]@endif -
    - -
    -
    - @if(count($video->tags)) - @foreach($video->tags as $tag) - {{$tag->name}}@if(Auth::check() && Auth::user()->can("edit_video")) @endif - @endforeach - @else - No tags yet ... - @endif -
    - -
    diff --git a/resources/views/layout3/video-partials/videocontrols.blade.php b/resources/views/layout3/video-partials/videocontrols.blade.php deleted file mode 100644 index 97f437a..0000000 --- a/resources/views/layout3/video-partials/videocontrols.blade.php +++ /dev/null @@ -1,18 +0,0 @@ -
    - @if(($prev = $video->getPrev()) === null) -
    - - @else -
    🡄 first
    -
    | - @endif - random - @if(($next = $video->getNext()) === null) - | - - @else - |
    -
    last 🡆
    - @endif - -
    \ No newline at end of file diff --git a/resources/views/layout3/video.blade.php b/resources/views/layout3/video.blade.php deleted file mode 100644 index ddf014d..0000000 --- a/resources/views/layout3/video.blade.php +++ /dev/null @@ -1,37 +0,0 @@ -@extends('layout') -@section('video') - -
    -
    -
    - -
    -
    - @include('video-partials.legacy-videonav') -
    -@endsection - -@section('testvideo') - -
    -
    -
    - -
    -
    - @include('video-partials.legacy-videonav') -
    -@endsection - -@section('floatvid') -
    - -
    - @include('video-partials.legacy-videonav') -@endsection diff --git a/resources/views/layout5/about.blade.php b/resources/views/layout5/about.blade.php deleted file mode 100644 index 621289c..0000000 --- a/resources/views/layout5/about.blade.php +++ /dev/null @@ -1,6 +0,0 @@ -@extends('profilelayout') -@section('content') -{!!$blah!!} -@include('footer') -@endsection - diff --git a/resources/views/layout5/advertise.blade.php b/resources/views/layout5/advertise.blade.php deleted file mode 100644 index 88f86c9..0000000 --- a/resources/views/layout5/advertise.blade.php +++ /dev/null @@ -1,30 +0,0 @@ -@extends('profilelayout') -@section('content') - -
    How to advertise?
    -
    Deutsch
    - -
    English
    - - -
    Example:
    -

    Exact banner size is: 342x50

    - - - -@include('footer') -@endsection diff --git a/resources/views/layout5/banned.blade.php b/resources/views/layout5/banned.blade.php deleted file mode 100644 index d626301..0000000 --- a/resources/views/layout5/banned.blade.php +++ /dev/null @@ -1,24 +0,0 @@ -@extends('profilelayout') -@section('content') -
    -
    -

    YOU ARE BANNED!

    -
    - -
    -
    -
    - @if($perm) -

    Your ban is permanent fool and will NOT expire!

    - - @else -

    Reason: {{ $user->banreason }}

    -

    Your ban will expire in {{ $user->banend->diffForHumans(null, true) }}

    - - @endif -
    -
    -

    If you think you were banned by accident or dindu nuffin to deserve the ban contact an administrator in the IRC

    -
    -
    -@endsection diff --git a/resources/views/layout5/categories.blade.php b/resources/views/layout5/categories.blade.php deleted file mode 100644 index 63e7232..0000000 --- a/resources/views/layout5/categories.blade.php +++ /dev/null @@ -1,20 +0,0 @@ -@extends('layout') -@section('content') - -
    - @foreach($categories as $category) -
    -
    - {{$category->name}} -
    -

    {{$category->name}} {{$category->videos()->count()}}

    -

    {{$category->description}}

    -

    View

    -
    -
    -
    - @endforeach -
    -@endsection diff --git a/resources/views/layout5/clippy.blade.php b/resources/views/layout5/clippy.blade.php deleted file mode 100644 index a2d3cd2..0000000 --- a/resources/views/layout5/clippy.blade.php +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/resources/views/layout5/close.sh b/resources/views/layout5/close.sh deleted file mode 100644 index def7523..0000000 --- a/resources/views/layout5/close.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -cd /srv/m.w0bm.com/resources/views/ -ln -sf registerclosed.blade.php register.blade.php -php ../../artisan view:clear diff --git a/resources/views/layout5/closedreg.php b/resources/views/layout5/closedreg.php deleted file mode 100644 index dcf75af..0000000 --- a/resources/views/layout5/closedreg.php +++ /dev/null @@ -1,5 +0,0 @@ -@extends('layout') -@section('content') - -@endif - - - - - - - - - - - - - - - diff --git a/resources/views/layout5/list.blade.php b/resources/views/layout5/list.blade.php deleted file mode 100644 index 804dd01..0000000 --- a/resources/views/layout5/list.blade.php +++ /dev/null @@ -1,24 +0,0 @@ -@extends('profilelayout') -@section('content') - - -
    -

    This list is made to list all the different WebM sites out there, if you know any other sites that are not listed here feel free to contact me!

    -

    We have no influence on content on these sites!

    -
      -
    1. webm.rrerr.net is a very comfy and simple webm indexer also open source software and easy to setup!
    2. -
    3. randomtube.xyz is a frontpage for WebMs posted on 2ch.hk/b/ (a russian imageboard) and it's also open source
    4. -
    5. webm-tv is also a frontpage for WebMs posted on 2ch, also open source
    6. -
    7. eyy.co is a simple random WebM index
    8. -
    9. issoutv.com is a french WebM site.
    10. -
    11. webm.land is a place where one can upload and share WebMs, has a public gallery.
    12. -
    13. webmshare.com is the better looking and working brother of webm.land, has 6 pubic gallerys with all kinds of different videos.
    14. -
    15. kongoucheats.com is a nice and simple webm page where you can upload and watch webms
    16. -
    17. p90.zone is a terrible collection of webms
    18. -
    - Last modified: 02.01.2019 -
    -@include('footer') -@endsection diff --git a/resources/views/layout5/login.blade.php b/resources/views/layout5/login.blade.php deleted file mode 100644 index 5986971..0000000 --- a/resources/views/layout5/login.blade.php +++ /dev/null @@ -1,19 +0,0 @@ -@extends('layout') -@section('content') - - - -
    -
    - {!! csrf_field() !!} - - - Remember me
    - - Register -
    - -@endsection diff --git a/resources/views/layout5/main.blade.php b/resources/views/layout5/main.blade.php deleted file mode 100644 index 6d1bf35..0000000 --- a/resources/views/layout5/main.blade.php +++ /dev/null @@ -1,30 +0,0 @@ -@extends('profilelayout') -@section('content') - - -
    - @foreach($videos as $video) - file); - ?> -
    - - {{-- MUSS UNBEDINGT NOCH ANGEPASST WERDEN!!! --}} - @if(file_exists(public_path() . '/thumbs/beta/'.$thumb.'.png')) - - @else - - @endif - -
    - @endforeach -
    -
    - {!! $videos->render() !!} -
    -@endsection diff --git a/resources/views/layout5/map.blade.php b/resources/views/layout5/map.blade.php deleted file mode 100644 index b632e26..0000000 --- a/resources/views/layout5/map.blade.php +++ /dev/null @@ -1,8 +0,0 @@ -@extends('profilelayout') -@section('content') - - -@endsection - diff --git a/resources/views/layout5/marder.blade.php b/resources/views/layout5/marder.blade.php deleted file mode 100644 index 250e794..0000000 --- a/resources/views/layout5/marder.blade.php +++ /dev/null @@ -1,24 +0,0 @@ -@extends('layout') -@section('content') -

    Hello everyone!

    - -
    - -

    Today we have sad news, a beloved friend of us and one of our most unique members died.

    -

    Some of you may remember his unique and interesting and somewhat chaotic but cool videos.

    -

    Today we mourn the loss of our friend marderchen.

    -

    We sincerely hope you are at a better place now.

    -

    We thank you for the great time we had with you, you inspired many of us and brought joy to the IRC and to the website, you will be missed old friend.

    - -

    To say it in your words: =^_^= MEOW

    - -

    We have archived his long gone website, make sure to check it out! It is absolutely wild (only available in German)

    - -

    https://marderchen.totally.rip/marderchen.lima-city.de/index.html

    - -

    Also make sure to check out his uploads https://w0bm.com/main?q=marderchen and enjoy it.

    - -

    - w0bm staff

    -
    -@endsection - diff --git a/resources/views/layout5/matrix.blade.php b/resources/views/layout5/matrix.blade.php deleted file mode 100644 index f38731d..0000000 --- a/resources/views/layout5/matrix.blade.php +++ /dev/null @@ -1,100 +0,0 @@ - -
    -
    -

    You are a slave {{Auth::user()->username}}

    -
    -

    Take control over your chats, leave Discord for good!

    -

    Join [matrix] today!

    -

    Why should you consider either running a [matrix] synapse yourself or start using someone elses:

    -

    Discord is evil, it took away the freedom you and I deserve, it makes you a slave to their services,
    makes you obey their rules, includes you in a unwanted botnet where you have no freedom at all!

    -

    It's time to break free {{Auth::user()->username}}

    -

    Choose your fate

    - -

    #!w0bm:f0ck.it

    -
    -

    We are happy to help if you have any trouble setting up your synapse

    -
    -
    - - - \ No newline at end of file diff --git a/resources/views/layout5/messages.blade.php b/resources/views/layout5/messages.blade.php deleted file mode 100644 index af58dd1..0000000 --- a/resources/views/layout5/messages.blade.php +++ /dev/null @@ -1,16 +0,0 @@ -@extends('profilelayout') -@section('content') -@include('partials.msglist') - -
    -
    -
    -
    -
    -
    -
    -

    Select a message to display content

    -
    -@endsection diff --git a/resources/views/layout5/messages/commentanswer.blade.php b/resources/views/layout5/messages/commentanswer.blade.php deleted file mode 100644 index 9400a32..0000000 --- a/resources/views/layout5/messages/commentanswer.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -

    {{$user->username}} answered on your comment.

    -

    {{$user->username}} answered on your comment on the following video: /{{$video->id}}

    -@include('messages.commentpreview') diff --git a/resources/views/layout5/messages/commentmention.blade.php b/resources/views/layout5/messages/commentmention.blade.php deleted file mode 100644 index d9c5a8d..0000000 --- a/resources/views/layout5/messages/commentmention.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -

    {{$user->username}} mentioned you in a comment.

    -

    {{$user->username}} mentioned you in a comment on the following video: /{{$video->id}}

    -@include('messages.commentpreview') diff --git a/resources/views/layout5/messages/commentpreview.blade.php b/resources/views/layout5/messages/commentpreview.blade.php deleted file mode 100644 index 46f257e..0000000 --- a/resources/views/layout5/messages/commentpreview.blade.php +++ /dev/null @@ -1,6 +0,0 @@ -
    -
    - @simplemd($comment->content) -
    - -
    diff --git a/resources/views/layout5/messages/moderation/commentdelete.blade.php b/resources/views/layout5/messages/moderation/commentdelete.blade.php deleted file mode 100644 index 734b4b6..0000000 --- a/resources/views/layout5/messages/moderation/commentdelete.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -

    A moderator deleted your comment.

    -

    A moderator deleted your comment on the following video: /{{$video->id}}

    -

    Reason: {{$reason}}

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout5/messages/moderation/commentrestore.blade.php b/resources/views/layout5/messages/moderation/commentrestore.blade.php deleted file mode 100644 index a8cf012..0000000 --- a/resources/views/layout5/messages/moderation/commentrestore.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -

    A moderator restored your comment.

    -

    A moderator restored your comment on the following video: /{{$video->id}}

    -

    Reason: {{$reason}}

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout5/messages/moderation/videodelete.blade.php b/resources/views/layout5/messages/moderation/videodelete.blade.php deleted file mode 100644 index 6a6568b..0000000 --- a/resources/views/layout5/messages/moderation/videodelete.blade.php +++ /dev/null @@ -1,10 +0,0 @@ -

    A moderator deleted your video.

    -

    A moderator deleted your video with the ID {{$video->id}}

    -Video Info: - -

    Reason: {{$reason}}

    \ No newline at end of file diff --git a/resources/views/layout5/messages/videocomment.blade.php b/resources/views/layout5/messages/videocomment.blade.php deleted file mode 100644 index 10d0747..0000000 --- a/resources/views/layout5/messages/videocomment.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -

    New comment on your video /{{$video->id}}

    -

    {{$user->username}} made a comment on your video.

    -@include('messages.commentpreview') diff --git a/resources/views/layout5/open.sh b/resources/views/layout5/open.sh deleted file mode 100644 index f8331f6..0000000 --- a/resources/views/layout5/open.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -cd /srv/m.w0bm.com/resources/views/ -ln -sf registeropen.blade.php register.blade.php -php ../../artisan view:clear -echo "mobile REG OPEN" -cd /srv/m.w0bm.com/resources/views/ -ln -sf registeropen.blade.php register.blade.php -php ../../artisan view:clear -echo "main reg open" diff --git a/resources/views/layout5/partials/banmenu.blade.php b/resources/views/layout5/partials/banmenu.blade.php deleted file mode 100644 index a1607d0..0000000 --- a/resources/views/layout5/partials/banmenu.blade.php +++ /dev/null @@ -1,27 +0,0 @@ -
    - {!! csrf_field() !!} - -
    diff --git a/resources/views/layout5/partials/comlist.php b/resources/views/layout5/partials/comlist.php deleted file mode 100644 index acb20a2..0000000 --- a/resources/views/layout5/partials/comlist.php +++ /dev/null @@ -1,14 +0,0 @@ - diff --git a/resources/views/layout5/partials/comment.blade.php b/resources/views/layout5/partials/comment.blade.php deleted file mode 100644 index 8ba27ee..0000000 --- a/resources/views/layout5/partials/comment.blade.php +++ /dev/null @@ -1,15 +0,0 @@ -
    -
    - @simplemd($comment->content) -
    - -
    diff --git a/resources/views/layout5/partials/commentform.blade.php b/resources/views/layout5/partials/commentform.blade.php deleted file mode 100644 index b813a7e..0000000 --- a/resources/views/layout5/partials/commentform.blade.php +++ /dev/null @@ -1,41 +0,0 @@ - diff --git a/resources/views/layout5/partials/comments.blade.php b/resources/views/layout5/partials/comments.blade.php deleted file mode 100644 index d4f2a1a..0000000 --- a/resources/views/layout5/partials/comments.blade.php +++ /dev/null @@ -1,35 +0,0 @@ -@if(Auth::check()) -@if($video->id == '30186') -@include('partials.thread_closed') -@else -@include('partials.commentform') -@endif -@endif - -@if(Auth::check()) - -@else -
    -
    - Not logged in. Please log in to view comments! -
    -
    - @endif diff --git a/resources/views/layout5/partials/filterselect.blade.php b/resources/views/layout5/partials/filterselect.blade.php deleted file mode 100644 index b17cbde..0000000 --- a/resources/views/layout5/partials/filterselect.blade.php +++ /dev/null @@ -1,18 +0,0 @@ - diff --git a/resources/views/layout5/partials/flash.blade.php b/resources/views/layout5/partials/flash.blade.php deleted file mode 100644 index f15929e..0000000 --- a/resources/views/layout5/partials/flash.blade.php +++ /dev/null @@ -1,36 +0,0 @@ -
    -
    - @if($errors->count() > 0) - @foreach($errors->all() as $error) - - @endforeach - @endif - @if(Session::has('error')) - - @endif - @if(Session::has('success')) - - @endif - @if(Session::has('info')) - - @endif - @if(Session::has('warning')) - - @endif -
    -
    diff --git a/resources/views/layout5/partials/frontendedit.blade.php b/resources/views/layout5/partials/frontendedit.blade.php deleted file mode 100644 index 20f7c50..0000000 --- a/resources/views/layout5/partials/frontendedit.blade.php +++ /dev/null @@ -1,42 +0,0 @@ -@if(isset($video)) -
    - {!! csrf_field() !!} - -
    -@endif diff --git a/resources/views/layout5/partials/handlebars.php b/resources/views/layout5/partials/handlebars.php deleted file mode 100644 index 3a70c75..0000000 --- a/resources/views/layout5/partials/handlebars.php +++ /dev/null @@ -1,22 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout5/partials/header.blade.php b/resources/views/layout5/partials/header.blade.php deleted file mode 100644 index e69de29..0000000 diff --git a/resources/views/layout5/partials/layoutchanger.blade.php b/resources/views/layout5/partials/layoutchanger.blade.php deleted file mode 100644 index 73b2ccb..0000000 --- a/resources/views/layout5/partials/layoutchanger.blade.php +++ /dev/null @@ -1,16 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout5/partials/loginmodal.blade.php b/resources/views/layout5/partials/loginmodal.blade.php deleted file mode 100644 index 8bd0e04..0000000 --- a/resources/views/layout5/partials/loginmodal.blade.php +++ /dev/null @@ -1,22 +0,0 @@ - diff --git a/resources/views/layout5/partials/msglist.php b/resources/views/layout5/partials/msglist.php deleted file mode 100644 index fbacfc0..0000000 --- a/resources/views/layout5/partials/msglist.php +++ /dev/null @@ -1,31 +0,0 @@ - - - diff --git a/resources/views/layout5/partials/navigation.blade.php b/resources/views/layout5/partials/navigation.blade.php deleted file mode 100644 index 8c7f7b3..0000000 --- a/resources/views/layout5/partials/navigation.blade.php +++ /dev/null @@ -1,37 +0,0 @@ - diff --git a/resources/views/layout5/partials/profileheader.blade.php b/resources/views/layout5/partials/profileheader.blade.php deleted file mode 100644 index e1524c5..0000000 --- a/resources/views/layout5/partials/profileheader.blade.php +++ /dev/null @@ -1,15 +0,0 @@ - diff --git a/resources/views/layout5/partials/registermodal.blade.php b/resources/views/layout5/partials/registermodal.blade.php deleted file mode 100644 index d56589a..0000000 --- a/resources/views/layout5/partials/registermodal.blade.php +++ /dev/null @@ -1,62 +0,0 @@ - diff --git a/resources/views/layout5/partials/tags.blade.php b/resources/views/layout5/partials/tags.blade.php deleted file mode 100644 index 21c4b50..0000000 --- a/resources/views/layout5/partials/tags.blade.php +++ /dev/null @@ -1,44 +0,0 @@ -
    -
    - @if(Auth::check()) - - -
    -
    - {{----}} - - - - -
    -
    - @else - - @endif - -
    -
    -
    - @if(count($video->tags)) - @foreach($video->tags as $tag) - {{$tag->name}}@if(Auth::check() && Auth::user()->can('edit_video')) @endif - @endforeach - @else - No tags yet ... - @endif -
    -
    -
    diff --git a/resources/views/layout5/partials/themechanger.blade.php b/resources/views/layout5/partials/themechanger.blade.php deleted file mode 100644 index 121f811..0000000 --- a/resources/views/layout5/partials/themechanger.blade.php +++ /dev/null @@ -1,16 +0,0 @@ -
  • - - -
  • diff --git a/resources/views/layout5/partials/thread_closed.php b/resources/views/layout5/partials/thread_closed.php deleted file mode 100644 index 03d2e52..0000000 --- a/resources/views/layout5/partials/thread_closed.php +++ /dev/null @@ -1,3 +0,0 @@ -
    - Thread closed! ;__; -
    diff --git a/resources/views/layout5/privacy.blade.php b/resources/views/layout5/privacy.blade.php deleted file mode 100644 index 346ddd4..0000000 --- a/resources/views/layout5/privacy.blade.php +++ /dev/null @@ -1,29 +0,0 @@ -@extends('profilelayout') -@section('content') - - -
    -
    What do we log?
    -

    Our webserver does not log access log requests, we may log error logs from time to time if something breaks.

    -
    3rd party links
    -

    There are some 3rd party linkings on this website, be careful with clicking them we don't know whats inside the box blah blah blah, don't be stupid and don't trust the internet.

    -

    If you encounter a malicious link shared here on w0bm.com please notify an admin in the IRC

    -

    If you find a bug or a vulnerability, please notify an admin in the IRC

    -
    Cookies
    -

    Yes, we use cookies and if you don't like that don't come to our site! (or don't accept them in the first place) You can see the details of the cookies in your browser.

    -

    Spoiler: They are all relevant for the website to function properly!

    - -
    -@if(auth()->check()) -@include('footer') -@else -@endif -@endsection diff --git a/resources/views/layout5/profile.blade.php b/resources/views/layout5/profile.blade.php deleted file mode 100644 index c1c0e10..0000000 --- a/resources/views/layout5/profile.blade.php +++ /dev/null @@ -1,33 +0,0 @@ -@extends('profilelayout') -@section('content') -@include('partials.profileheader') -
    - View {{ $title }} -
    - - - - - - - - - - - - @foreach($videos as $video) - file); - ?> - - - - - - - - @endforeach - -
    IDArtistSongtitleCategory
    {{$video->id}}{{$video->interpret or ''}}{{$video->songtitle or ''}}{{$video->category->name}}
    - {!! $videos->render() !!} -@endsection diff --git a/resources/views/layout5/profilelayout.blade.php b/resources/views/layout5/profilelayout.blade.php deleted file mode 100644 index ad584a3..0000000 --- a/resources/views/layout5/profilelayout.blade.php +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - w0bm.com - WebMs with sound! - - - - - - - - - - - - - - -@include('partials.handlebars') -@if(auth()->check()) - @include('partials.filterselect') - @if(isset($user) && auth()->user()->can('edit_user')) - @include('partials.banmenu') - @endif -@endif - -@if(auth()->check()) -@include('partials.navigation') - -
    - @yield('aside') -
    -
    - - @yield('content') -
    -
    - -
    -@else -
    -
    ERR 77
    -

    Please Login

    -@include('partials.loginmodal') -
    -@endif - - - - - - - - - - diff --git a/resources/views/layout5/register.blade.php b/resources/views/layout5/register.blade.php deleted file mode 100644 index f45f3d7..0000000 --- a/resources/views/layout5/register.blade.php +++ /dev/null @@ -1,34 +0,0 @@ -@extends('layout') -@section('content') - - -
    Oh shit! Something went wrong!
    -
    -
    Please don't send this fucking text to an admin, we have other problems.
    - - @if(!env('APP_DEBUG')) -
    - {{bin2hex($iv)}}
    - {{openssl_encrypt($exception, 'aes128', env('APP_KEY'), 0, $iv)}} -
    - @else -
    -
    {{$exception}}
    -
    - @endif - -
    -@include('footer') -@endsection diff --git a/resources/views/layout69/errors/503.blade.php b/resources/views/layout69/errors/503.blade.php deleted file mode 100644 index 4f63d68..0000000 --- a/resources/views/layout69/errors/503.blade.php +++ /dev/null @@ -1,47 +0,0 @@ - - - - Please Stand By we are just fucking this up - - - - - -
    -
    -
    Short maintenance, brb!
    -
    -
    - - diff --git a/resources/views/layout69/footer.blade.php b/resources/views/layout69/footer.blade.php deleted file mode 100644 index bff5b03..0000000 --- a/resources/views/layout69/footer.blade.php +++ /dev/null @@ -1,6 +0,0 @@ - diff --git a/resources/views/layout69/footertwo.blade.php b/resources/views/layout69/footertwo.blade.php deleted file mode 100644 index 3a0c81c..0000000 --- a/resources/views/layout69/footertwo.blade.php +++ /dev/null @@ -1,59 +0,0 @@ - diff --git a/resources/views/layout69/git.blade.php b/resources/views/layout69/git.blade.php deleted file mode 100644 index 29d0cae..0000000 --- a/resources/views/layout69/git.blade.php +++ /dev/null @@ -1,29 +0,0 @@ -@extends('profilelayout') -@section('content') -"; - echo "Latest commit"; - //echo "

    $commitID

    "; - echo "
    $latestCommit
    "; - echo ""; -} - -function getLastTenCommits() { - $lastTenCommits = shell_exec('git log -n 10'); - echo "
    "; - echo "Last 10 Commits"; - echo "
    $lastTenCommits
    "; - echo "
    "; -} - -getLatestCommit(); -getLastTenCommits() -?> - -@endsection -@include('footer') \ No newline at end of file diff --git a/resources/views/layout69/help.blade.php b/resources/views/layout69/help.blade.php deleted file mode 100644 index 6ec5ce1..0000000 --- a/resources/views/layout69/help.blade.php +++ /dev/null @@ -1,7 +0,0 @@ -@extends('layout') -@section('content') - -@endsection - diff --git a/resources/views/layout69/index.blade.php b/resources/views/layout69/index.blade.php deleted file mode 100644 index 6f9d585..0000000 --- a/resources/views/layout69/index.blade.php +++ /dev/null @@ -1,77 +0,0 @@ -@extends('profilelayout') -@section('content') - - - - - - - - - - - - - - @foreach($videos as $video) - file); - ?> - - - - - - - - - @endforeach - -
    IDVideo TitleArtistSongtitleCategory
    - @if($edit = auth()->check() && auth()->user()->can('edit_video')) -
    - @endif - {{$video->id}} - @if($edit) - - @endif -
    - {{$video->videotitle or ''}} - @if($edit) - - @endif - - {{$video->interpret or ''}} - @if($edit) - - @endif - - {{$video->songtitle or ''}} - @if($edit) - - @endif - - {{$video->category->name}} - @if($edit) - - @endif -
    -
    - {!! $videos->render() !!} -
    -@endsection diff --git a/resources/views/layout69/irc.blade.php b/resources/views/layout69/irc.blade.php deleted file mode 100644 index 1875253..0000000 --- a/resources/views/layout69/irc.blade.php +++ /dev/null @@ -1,23 +0,0 @@ -@extends('profilelayout') -@section('content') - - -
    -{{--
    - @if(auth()->check()) - - @else - - @endif -
    --}} -
    -
    IRC
    -
    irc.n0xy.net +6697 (ssl only) #w0bm
    -

    n0xy.net Webirc

    -

    More information: n0xy.net

    -
    -@include('footer') -@endsection - diff --git a/resources/views/layout69/layout.blade.php b/resources/views/layout69/layout.blade.php deleted file mode 100644 index a4f80c6..0000000 --- a/resources/views/layout69/layout.blade.php +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - - - - - @if(auth()->check())@endif - - - - - @if(auth()->check())@endif - @if(isset($video)) - @if($video->isSfw()) - file)}}.png"@endif/> - file)}}.png"@endif/> - @else - file)}}_blurred.png"@endif/> - file)}}_blurred.png"@endif/> - @endif - @endif - - @if(auth()->check())@endif - - - - @if(isset($video)){{ $video->id }} -@endif w0bm.com - - - - - - - - - @if(auth()->check()) - - - - - - - - @else - @endif - - -@if(auth()->check()) -@include('partials.report') - @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()) - -@else - -@endif - -@include('partials.navigation') - -
    - @yield('aside') -
    - - @include('footertwo') -
    - @yield('content') -
    - -
    -
    -@if(auth()->check()) - - - - - - - - - - - - -@else - -@endif -@if(isset($video)) -@else -@endif -

    development version

    - - diff --git a/resources/views/layout69/login.blade.php b/resources/views/layout69/login.blade.php deleted file mode 100644 index 05f87ca..0000000 --- a/resources/views/layout69/login.blade.php +++ /dev/null @@ -1,26 +0,0 @@ -@extends('layout') -@section('content') -@include('partials.flash') -
    - -
    -@endsection \ No newline at end of file diff --git a/resources/views/layout69/main.blade.php b/resources/views/layout69/main.blade.php deleted file mode 100644 index fe0faaa..0000000 --- a/resources/views/layout69/main.blade.php +++ /dev/null @@ -1,30 +0,0 @@ -@extends('profilelayout') -@section('content') - - -
    - @foreach($videos as $video) - file); - ?> - - @endforeach -
    -@endsection diff --git a/resources/views/layout69/marder.blade.php b/resources/views/layout69/marder.blade.php deleted file mode 100644 index 7d53282..0000000 --- a/resources/views/layout69/marder.blade.php +++ /dev/null @@ -1,24 +0,0 @@ -@extends('profilelayout') -@section('content') -

    Hello everyone!

    - -
    - -

    Today we have sad news, a beloved friend of us and one of our most unique members died.

    -

    Some of you may remember his unique and interesting and somewhat chaotic but cool videos.

    -

    Today we mourn the loss of our friend marderchen.

    -

    We sincerely hope you are at a better place now.

    -

    We thank you for the great time we had with you, you inspired many of us and brought joy to the IRC and to the website, you will be missed old friend.

    - -

    To say it in your words: =^_^= MEOW

    - -

    We have archived his long gone website, make sure to check it out! It is absolutely wild (only available in German)

    - -

    https://marderchen.totally.rip/marderchen.lima-city.de/index.html

    - -

    Also make sure to check out his uploads https://w0bm.com/main?q=marderchen and enjoy it.

    - -

    - w0bm staff

    -
    -@endsection - diff --git a/resources/views/layout69/matrix.blade.php b/resources/views/layout69/matrix.blade.php deleted file mode 100644 index 911005c..0000000 --- a/resources/views/layout69/matrix.blade.php +++ /dev/null @@ -1,101 +0,0 @@ - -
    -
    -

    Are you a slave {{Auth::user()->username}} ?

    -
    -

    Take control over your chats, leave Discord for good!

    -

    Join [matrix] today!

    -

    Why should you consider either running a [matrix] synapse yourself or start using someone elses:

    -

    Discord is evil, it took away the freedom you and I deserve, it makes you a slave to their services,
    makes you obey their rules, includes you in a unwanted botnet where you have no freedom at all!

    -

    Why you shouldn't use Discord

    -

    It's time to break free {{Auth::user()->username}}

    -

    Choose your fate

    - -

    #w0bm:totally.rip

    -
    -

    We are happy to help if you have any trouble setting up your synapse

    -
    -
    - - - diff --git a/resources/views/layout69/messages.blade.php b/resources/views/layout69/messages.blade.php deleted file mode 100644 index af58dd1..0000000 --- a/resources/views/layout69/messages.blade.php +++ /dev/null @@ -1,16 +0,0 @@ -@extends('profilelayout') -@section('content') -@include('partials.msglist') - -
    -
    -
    -
    -
    -
    -
    -

    Select a message to display content

    -
    -@endsection diff --git a/resources/views/layout69/messages/commentanswer.blade.php b/resources/views/layout69/messages/commentanswer.blade.php deleted file mode 100644 index 5fa7616..0000000 --- a/resources/views/layout69/messages/commentanswer.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -

    {{$user->username}} answered on your comment.

    -

    {{$user->username}} answered on your comment on the following video: /{{$video->id}}

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout69/messages/commentmention.blade.php b/resources/views/layout69/messages/commentmention.blade.php deleted file mode 100644 index ea15625..0000000 --- a/resources/views/layout69/messages/commentmention.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -

    {{$user->username}} mentioned you in a comment.

    -

    {{$user->username}} mentioned you in a comment on the following video: /{{$video->id}}

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout69/messages/commentpreview.blade.php b/resources/views/layout69/messages/commentpreview.blade.php deleted file mode 100644 index 46f257e..0000000 --- a/resources/views/layout69/messages/commentpreview.blade.php +++ /dev/null @@ -1,6 +0,0 @@ -
    -
    - @simplemd($comment->content) -
    - -
    diff --git a/resources/views/layout69/messages/moderation/commentdelete.blade.php b/resources/views/layout69/messages/moderation/commentdelete.blade.php deleted file mode 100644 index 734b4b6..0000000 --- a/resources/views/layout69/messages/moderation/commentdelete.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -

    A moderator deleted your comment.

    -

    A moderator deleted your comment on the following video: /{{$video->id}}

    -

    Reason: {{$reason}}

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout69/messages/moderation/commentrestore.blade.php b/resources/views/layout69/messages/moderation/commentrestore.blade.php deleted file mode 100644 index a8cf012..0000000 --- a/resources/views/layout69/messages/moderation/commentrestore.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -

    A moderator restored your comment.

    -

    A moderator restored your comment on the following video: /{{$video->id}}

    -

    Reason: {{$reason}}

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout69/messages/moderation/videodelete.blade.php b/resources/views/layout69/messages/moderation/videodelete.blade.php deleted file mode 100644 index 6a6568b..0000000 --- a/resources/views/layout69/messages/moderation/videodelete.blade.php +++ /dev/null @@ -1,10 +0,0 @@ -

    A moderator deleted your video.

    -

    A moderator deleted your video with the ID {{$video->id}}

    -Video Info: - -

    Reason: {{$reason}}

    \ No newline at end of file diff --git a/resources/views/layout69/messages/videocomment.blade.php b/resources/views/layout69/messages/videocomment.blade.php deleted file mode 100644 index 48e43c4..0000000 --- a/resources/views/layout69/messages/videocomment.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -

    New comment on your video /{{$video->id}}

    -

    {{$user->username}} made a comment on your video.

    -@include('messages.commentpreview') \ No newline at end of file diff --git a/resources/views/layout69/open.sh b/resources/views/layout69/open.sh deleted file mode 100644 index 0f713e9..0000000 --- a/resources/views/layout69/open.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -cd /home/sirx/web/devw0bm.com/resources/views/ -ln -sf registeropen.blade.php register.blade.php -php ../../artisan view:clear diff --git a/resources/views/layout69/partials/banmenu.blade.php b/resources/views/layout69/partials/banmenu.blade.php deleted file mode 100644 index a1607d0..0000000 --- a/resources/views/layout69/partials/banmenu.blade.php +++ /dev/null @@ -1,27 +0,0 @@ -
    - {!! csrf_field() !!} - -
    diff --git a/resources/views/layout69/partials/comlist.php b/resources/views/layout69/partials/comlist.php deleted file mode 100644 index 8c0f191..0000000 --- a/resources/views/layout69/partials/comlist.php +++ /dev/null @@ -1,14 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout69/partials/comment.blade.php b/resources/views/layout69/partials/comment.blade.php deleted file mode 100644 index a4d0d5e..0000000 --- a/resources/views/layout69/partials/comment.blade.php +++ /dev/null @@ -1,15 +0,0 @@ -
    -
    - @simplemd($comment->content) -
    - -
    diff --git a/resources/views/layout69/partials/commentform.blade.php b/resources/views/layout69/partials/commentform.blade.php deleted file mode 100644 index 7855f52..0000000 --- a/resources/views/layout69/partials/commentform.blade.php +++ /dev/null @@ -1,35 +0,0 @@ - diff --git a/resources/views/layout69/partials/comments.blade.php b/resources/views/layout69/partials/comments.blade.php deleted file mode 100644 index 6137b33..0000000 --- a/resources/views/layout69/partials/comments.blade.php +++ /dev/null @@ -1,60 +0,0 @@ - -{{--
    -

    Please check out the overhauled Njum Layout and give me some feedback!

    -
    --}} -{{--
    -

    Next month w0bm turns 6 years old! Wouldn't be possible without all of you! Thanks

    -
    --}} -@if(Auth::check()) -@if($video->id == '30186') -@include('partials.thread_closed') -@else -@include('partials.commentform') -@endif -@else -@endif - -@if(Auth::check()) - -@else - -@endif diff --git a/resources/views/layout69/partials/filterselect.blade.php b/resources/views/layout69/partials/filterselect.blade.php deleted file mode 100644 index 244a830..0000000 --- a/resources/views/layout69/partials/filterselect.blade.php +++ /dev/null @@ -1,19 +0,0 @@ - diff --git a/resources/views/layout69/partials/flash.blade.php b/resources/views/layout69/partials/flash.blade.php deleted file mode 100644 index f15929e..0000000 --- a/resources/views/layout69/partials/flash.blade.php +++ /dev/null @@ -1,36 +0,0 @@ -
    -
    - @if($errors->count() > 0) - @foreach($errors->all() as $error) - - @endforeach - @endif - @if(Session::has('error')) - - @endif - @if(Session::has('success')) - - @endif - @if(Session::has('info')) - - @endif - @if(Session::has('warning')) - - @endif -
    -
    diff --git a/resources/views/layout69/partials/frontendedit.blade.php b/resources/views/layout69/partials/frontendedit.blade.php deleted file mode 100644 index aa6f552..0000000 --- a/resources/views/layout69/partials/frontendedit.blade.php +++ /dev/null @@ -1,46 +0,0 @@ -@if(isset($video)) -
    - {!! csrf_field() !!} - -
    -@endif diff --git a/resources/views/layout69/partials/handlebars.php b/resources/views/layout69/partials/handlebars.php deleted file mode 100644 index 3a70c75..0000000 --- a/resources/views/layout69/partials/handlebars.php +++ /dev/null @@ -1,22 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/layout69/partials/header.blade.php b/resources/views/layout69/partials/header.blade.php deleted file mode 100644 index e69de29..0000000 diff --git a/resources/views/layout69/partials/layoutchanger.blade.php b/resources/views/layout69/partials/layoutchanger.blade.php deleted file mode 100644 index 7a075bc..0000000 --- a/resources/views/layout69/partials/layoutchanger.blade.php +++ /dev/null @@ -1,12 +0,0 @@ - diff --git a/resources/views/layout69/partials/loginmodal.blade.php b/resources/views/layout69/partials/loginmodal.blade.php deleted file mode 100644 index b748734..0000000 --- a/resources/views/layout69/partials/loginmodal.blade.php +++ /dev/null @@ -1,25 +0,0 @@ - diff --git a/resources/views/layout69/partials/msglist.php b/resources/views/layout69/partials/msglist.php deleted file mode 100644 index fbacfc0..0000000 --- a/resources/views/layout69/partials/msglist.php +++ /dev/null @@ -1,31 +0,0 @@ - - - diff --git a/resources/views/layout69/partials/navigation.blade.php b/resources/views/layout69/partials/navigation.blade.php deleted file mode 100644 index d56c94d..0000000 --- a/resources/views/layout69/partials/navigation.blade.php +++ /dev/null @@ -1,55 +0,0 @@ - diff --git a/resources/views/layout69/partials/profileheader.blade.php b/resources/views/layout69/partials/profileheader.blade.php deleted file mode 100644 index dccddb9..0000000 --- a/resources/views/layout69/partials/profileheader.blade.php +++ /dev/null @@ -1,15 +0,0 @@ - diff --git a/resources/views/layout69/partials/registermodal.blade.php b/resources/views/layout69/partials/registermodal.blade.php deleted file mode 100644 index d56589a..0000000 --- a/resources/views/layout69/partials/registermodal.blade.php +++ /dev/null @@ -1,62 +0,0 @@ - diff --git a/resources/views/layout69/partials/report.blade.php b/resources/views/layout69/partials/report.blade.php deleted file mode 100644 index 00a56d3..0000000 --- a/resources/views/layout69/partials/report.blade.php +++ /dev/null @@ -1,40 +0,0 @@ - -@if(isset($video)) -
    - {!! csrf_field() !!} - -
    -@endif diff --git a/resources/views/layout69/partials/searchbar.blade.php b/resources/views/layout69/partials/searchbar.blade.php deleted file mode 100644 index 473c994..0000000 --- a/resources/views/layout69/partials/searchbar.blade.php +++ /dev/null @@ -1,10 +0,0 @@ -
    -w0bm will turn 8 years old in a few months, thanks for all the great years! -
    - - diff --git a/resources/views/layout69/partials/searchmodal.blade.php b/resources/views/layout69/partials/searchmodal.blade.php deleted file mode 100644 index 801fb5e..0000000 --- a/resources/views/layout69/partials/searchmodal.blade.php +++ /dev/null @@ -1,39 +0,0 @@ - diff --git a/resources/views/layout69/partials/tags.blade.php b/resources/views/layout69/partials/tags.blade.php deleted file mode 100644 index 37db8d7..0000000 --- a/resources/views/layout69/partials/tags.blade.php +++ /dev/null @@ -1,54 +0,0 @@ - diff --git a/resources/views/layout69/partials/themechanger.blade.php b/resources/views/layout69/partials/themechanger.blade.php deleted file mode 100644 index 8203485..0000000 --- a/resources/views/layout69/partials/themechanger.blade.php +++ /dev/null @@ -1,20 +0,0 @@ -
  • - - -
  • diff --git a/resources/views/layout69/partials/thread_closed.php b/resources/views/layout69/partials/thread_closed.php deleted file mode 100644 index 03d2e52..0000000 --- a/resources/views/layout69/partials/thread_closed.php +++ /dev/null @@ -1,3 +0,0 @@ -
    - Thread closed! ;__; -
    diff --git a/resources/views/layout69/popover-content.blade.php b/resources/views/layout69/popover-content.blade.php deleted file mode 100644 index bf44074..0000000 --- a/resources/views/layout69/popover-content.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -@if($video->interpret) Artist: {{ $video->interpret }}
    @endif -@if($video->songtitle) Songtitle: {{ $video->songtitle }}
    @endif -@if($video->imgsource) Video Source: {{ $video->imgsource }}
    @endif -Category: {{ $video->category->name }} \ No newline at end of file diff --git a/resources/views/layout69/privacy.blade.php b/resources/views/layout69/privacy.blade.php deleted file mode 100644 index 3955833..0000000 --- a/resources/views/layout69/privacy.blade.php +++ /dev/null @@ -1,26 +0,0 @@ -@extends('profilelayout') -@section('content') - - -
    -
    What do we log?
    -

    Our webserver does not log access log requests, we may log error logs from time to time if something breaks.

    -
    3rd party links
    -

    There are some 3rd party linkings on this website, be careful with clicking them we don't know whats inside the box blah blah blah, don't be stupid and don't trust the internet.

    -

    If you encounter a malicious link shared here on w0bm.com please notify an admin in the IRC

    -

    If you find a bug or a vulnerability, please notify an admin in the IRC

    -
    Cookies
    -

    Yes, we use cookies and if you don't like that don't come to our site! (or don't accept them in the first place) You can see the details of the cookies in your browser.

    -

    Spoiler: They are all relevant for the website to function properly!

    - -
    -@include('footer') -@endsection diff --git a/resources/views/layout69/profile.blade.php b/resources/views/layout69/profile.blade.php deleted file mode 100644 index e32e5f2..0000000 --- a/resources/views/layout69/profile.blade.php +++ /dev/null @@ -1,36 +0,0 @@ -@extends('profilelayout') -@section('content') -@include('partials.profileheader') -
    - View {{ $title }} - - - - - - - - - - - - - - @foreach($videos as $video) - file); - ?> - - - - - - - - - @endforeach - -
    IDVideo TitleArtistSongtitleCategory
    {{$video->id}}{{$video->videotitle or ''}}{{$video->interpret or ''}}{{$video->songtitle or ''}}{{$video->category->name}}
    - {!! $videos->render() !!} -
    -@endsection diff --git a/resources/views/layout69/profilelayout.blade.php b/resources/views/layout69/profilelayout.blade.php deleted file mode 100644 index cb73352..0000000 --- a/resources/views/layout69/profilelayout.blade.php +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - w0bm.com - WebMs with sound! - - - - - - - - @if(auth()->check()) - - - - - - - - - - @else - @endif - - -@if(auth()->check()) -@include('partials.handlebars') -@else -@endif -@if(auth()->check()) - @include('partials.filterselect') - @if(isset($user) && auth()->user()->can('edit_user')) - @include('partials.banmenu') - @endif -@endif -@if(auth()->check()) - -@else -@endif -@include('partials.navigation') - -
    - @yield('aside') -
    -
    - - @yield('content') -
    -
    - -
    -@if(auth()->check()) - - - - - - - - -@else -@endif - - diff --git a/resources/views/layout69/rulez.blade.php b/resources/views/layout69/rulez.blade.php deleted file mode 100644 index 2c7f413..0000000 --- a/resources/views/layout69/rulez.blade.php +++ /dev/null @@ -1,39 +0,0 @@ -@extends('layout') -@section('content') - -
    -
    General
    -
      - @foreach($generalrules as $rule) -
    1. {{$rule->rule}}
    2. - @endforeach -
    -
    -
    -
    Uploading
    -
      - @foreach($uploadrules as $rule) -
    1. {!!$rule->rule!!}
    2. - @endforeach -
    -
    -
    -
    Tagging
    -
      - @foreach($tagrules as $rule) -
    1. {!!$rule->rule!!}
    2. - @endforeach -
    -
    -
    -
    Commenting
    -
      - @foreach($commentrules as $rule) -
    1. {!!$rule->rule!!}
    2. - @endforeach -
    -
    - @include('footer') -@endsection diff --git a/resources/views/layout69/settings.blade.php b/resources/views/layout69/settings.blade.php deleted file mode 100644 index 13fbab4..0000000 --- a/resources/views/layout69/settings.blade.php +++ /dev/null @@ -1,17 +0,0 @@ - @extends('profilelayout') -@section('content') -

    Layouts

    -
    -
    Change how you experience w0bm.com
    - -
    - @endsection \ No newline at end of file diff --git a/resources/views/layout69/stats.blade.php b/resources/views/layout69/stats.blade.php deleted file mode 100644 index 75caed6..0000000 --- a/resources/views/layout69/stats.blade.php +++ /dev/null @@ -1,15 +0,0 @@ -@extends('profilelayout') -@section('content') - -
    -

    Total amount of registered users: {{$user_count}} / 3000

    -

    Total amount of uploads: {{$upload_count}}

    -

    Total amount of comments: {{$comment_count}}

    -

    Latest video /{{$latest_video}}

    -

    Newest user /user/{{$newest_user}}

    -

    Total size of w0bm: {{$dirsize}}

    -
    -@include('footer') -@endsection diff --git a/resources/views/layout69/upload.blade.php b/resources/views/layout69/upload.blade.php deleted file mode 100644 index 4e91114..0000000 --- a/resources/views/layout69/upload.blade.php +++ /dev/null @@ -1,76 +0,0 @@ -@extends('profilelayout') -@section('content') -
    -

    Upload

    -
    -
    -
    -
    -
    -
    - {!! Form::text('videotitle', null, ['id' => 'videotitle', 'class' => 'form-control', 'placeholder' => 'Video Title']) !!} -
    -
    -
    - {!! Form::text('interpret', null, ['id' => 'interpret', 'class' => 'form-control', 'placeholder' => 'Artist']) !!} -
    -
    -
    -
    - {!! Form::text('songtitle', null, ['id' => 'songtitle', 'class' => 'form-control', 'placeholder' => 'Songtitle']) !!} -
    -
    -
    -
    - {!! Form::text('imgsource', null, ['id' => 'imgsource', 'class' => 'form-control', 'placeholder' => 'Video Source']) !!} -
    -
    -
    -
    - id] = $cat->name; - ?> - {!! Form::select('category', $categories, 8, ['id' => 'category', 'class' => 'form-control']) !!} -
    -
    -
    -
    - {!! Form::checkbox('nsfw', 'true', false, ['id' => 'nsfw']) !!} -
    -
    -
    -
    - {!! Form::text('tags', null, ['id' => 'tags_upload', 'class' => 'form-control', 'placeholder' => 'Input tags...', 'name' => 'tags', 'data-role' => 'tagsinput']) !!} -
    -
    -
    - @include('partials.flash') -
    - -
    - -
    -
    - -

    Before you fire the laz0r make sure you have read the Rules!
    With great power comes great responsibility

    -

    10 uploads every 12 hours. – Maximum filesize: 40MB. – Only .webm (vp8/vp9) with sound allowed. Need help?

    -
    -
    - -
    -
    -@endsection diff --git a/resources/views/layout69/video.blade.php b/resources/views/layout69/video.blade.php deleted file mode 100644 index 48c18d9..0000000 --- a/resources/views/layout69/video.blade.php +++ /dev/null @@ -1,125 +0,0 @@ -@extends('layout') -@section('content') - -@if(auth()->check()) - -
    -
    -
    - @if($video->id == '27204') - - @else - - @endif - @if($video->category->name === 'Anime' || $video->category->name === 'Otomad') - - - @endif -
    - file); - //$mp4 = shell_exec("curl https://fapple.w0bm.com/api/v1/{{$shortfile}} | jq -r .size"); - ?> -
    - @if($related) - @if(($prev = $video->getPrev($related)) === null) - - | - @else - ← first - | - @endif - {!!$related->displayName()!!} - @if(($next = $video->getNext($related)) === null) - | - - @else - | - last → - @endif - @else - @if(($prev = $video->getPrev()) === null) - - | - @else - ← first - | - @endif - random - @if(($next = $video->getNext()) === null) - | - - @else - | - last → - @endif - @endif -
    -
    -
    -@endsection - -@section('aside') - - -@else -
    - -
    -@endif -@endsection diff --git a/resources/views/layout69/webm.blade.php b/resources/views/layout69/webm.blade.php deleted file mode 100644 index 689720a..0000000 --- a/resources/views/layout69/webm.blade.php +++ /dev/null @@ -1,61 +0,0 @@ -@extends('profilelayout') -@section('content') - - -
    -

    Chad (not afraid of using the command line)

    -gigachad -
    #The based white man way
    -
    -ffmpeg -i virgin.mp4 chad.webm #single file, very simple
    -
    -#You can add this to your .bashrc
    -
    -function mkwebmbatch() {
    -        for i in *.$1;
    -                do name=`basename "$i" .$1`
    -                echo "$name"
    -                ffmpeg -i "$i" -c:v libvpx -c:a libvorbis -auto-alt-ref 0 -crf 5 "$PWD/${name}.webm"
    -        done
    -}
    -
    -function mkwebm() {
    -	filename=$(basename -- "$1")
    -	extension="${filename##*.}"
    -	filename="${filename%.*}"
    -	name=`basename "$filename" .$extension`
    -	echo "$name"
    -	ffmpeg -i "$1" -c:v libvpx -c:a libvorbis -auto-alt-ref 0 -crf 5 "$HOME/Videos/converts/$name.webm"
    -}
    -
    -function stillvid() {
    -	#stillvid image.jpg music.mp3 $3.
    -	ffmpeg -i "$1" -i "$2" -c:a libvorbis -auto-alt-ref 0 -c:v libvpx $3.webm 
    -}
    -
    -#Notable mentions
    -
    -* https://github.com/ekisu/mpv-webm
    -
    -* https://github.com/Kagami/webm.py
    -
    -# If using webm.py a good line to get a high quality video would be
    -
    -# (assuming you have it in your path)
    -webm -i virgin.mp4 -l 40 chad.webm #this will produce a vp9 webm with decent image quality
    -
    -
    -

    VS

    -
    -

    Virgin

    -gigachad - -
    -@endsection - diff --git a/resources/views/layout8/about.blade.php b/resources/views/layout8/about.blade.php deleted file mode 100644 index 2a8b433..0000000 --- a/resources/views/layout8/about.blade.php +++ /dev/null @@ -1,7 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -
    -{!!$blah!!} -
    -@endsection - diff --git a/resources/views/layout8/abouttest.blade.php b/resources/views/layout8/abouttest.blade.php deleted file mode 100644 index 8ba19b2..0000000 --- a/resources/views/layout8/abouttest.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') -{{$blah}} -@endsection \ No newline at end of file diff --git a/resources/views/layout8/banned.blade.php b/resources/views/layout8/banned.blade.php deleted file mode 100644 index d626301..0000000 --- a/resources/views/layout8/banned.blade.php +++ /dev/null @@ -1,24 +0,0 @@ -@extends('profilelayout') -@section('content') -
    -
    -

    YOU ARE BANNED!

    -
    - -
    -
    -
    - @if($perm) -

    Your ban is permanent fool and will NOT expire!

    - - @else -

    Reason: {{ $user->banreason }}

    -

    Your ban will expire in {{ $user->banend->diffForHumans(null, true) }}

    - - @endif -
    -
    -

    If you think you were banned by accident or dindu nuffin to deserve the ban contact an administrator in the IRC

    -
    -
    -@endsection diff --git a/resources/views/layout8/categories.blade.php b/resources/views/layout8/categories.blade.php deleted file mode 100644 index 0b14662..0000000 --- a/resources/views/layout8/categories.blade.php +++ /dev/null @@ -1,21 +0,0 @@ -@extends('profilelayout') -@section('novidcontent') - -
    -
    - @foreach($categories as $category) -
    -
    - {{$category->name}} -
    -
    {{$category->name}} {{$category->videos()->count()}}
    - {{$category->description}} -
    -
    -
    - @endforeach -
    -
    -@endsection diff --git a/resources/views/layout8/close.sh b/resources/views/layout8/close.sh deleted file mode 100644 index 91e778e..0000000 --- a/resources/views/layout8/close.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -cd /home/sirx/web/w0bm.com/resources/views/ -ln -sf registerclosed.blade.php register.blade.php -php ../../artisan view:clear diff --git a/resources/views/layout8/closedreg.php b/resources/views/layout8/closedreg.php deleted file mode 100644 index dcf75af..0000000 --- a/resources/views/layout8/closedreg.php +++ /dev/null @@ -1,5 +0,0 @@ -@extends('layout') -@section('content') -