small changes to the layouts and their css files, nothing really impacting

This commit is contained in:
noxy
2019-09-02 11:56:50 +00:00
parent 5fada7ae29
commit 8dd96f7d11
10 changed files with 23 additions and 29 deletions

View File

@@ -20,7 +20,7 @@ Route::get('/', ['as' => 'home', function () {
}])->middleware('auth');
Route::post('nojs', 'UserController@nojs');
Route::get('nojs', function() { return view('nojs'); });
Route::post('filter', 'UserController@filter');
@@ -108,9 +108,6 @@ Route::group(["middleware" => "theme"], function() {
Route::get('rules', function() { return view('rules'); });
Route::get('contact', function() { return view('contact'); });
Route::get('privacy', function() { return view('privacy'); });
Route::get('teamspeak', function() { return view('teamspeak'); });
Route::get('news', function() { return view('news'); });
Route::get('0x40', function() { return view('0x40'); });
Route::get('stats', function() {
return view('stats', [
'user_count' => \App\Models\User::count(),
@@ -137,7 +134,6 @@ Route::group(["middleware" => "theme"], function() {
# 'donations' => \App\Models\Donation::orderBy('timestamp', 'DESC')->get()
# ]);
#});
Route::get('transparency', function() { return view('transparency'); });
Route::get('login', function() { return view('login'); });
#Route::get('counter-strike', function() { return view('counter-strike'); });