Fixing various problems. Search is now positioned in a saner way, designs have been fixed (only layout1)
This commit is contained in:
Binary file not shown.
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.1 KiB |
@@ -12,7 +12,7 @@ class Kernel extends HttpKernel
|
||||
* @var array
|
||||
*/
|
||||
protected $middleware = [
|
||||
\Clockwork\Support\Laravel\ClockworkMiddleware::class,
|
||||
//\Clockwork\Support\Laravel\ClockworkMiddleware::class,
|
||||
\Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
|
||||
Middleware\EncryptCookies::class,
|
||||
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
|
||||
|
@@ -132,6 +132,7 @@ Route::group(["middleware" => "theme"], function() {
|
||||
Route::get('webm', function() { return view('webm'); })->middleware('auth');
|
||||
Route::get('settings', function() { return view('settings'); })->middleware('auth');
|
||||
Route::get('matrix', function() { return view('matrix'); })->middleware('auth');
|
||||
Route::get('git', function() { return view('git'); })->middleware('auth');
|
||||
#Route::get('about', function() { return view('about'); })->middleware('auth');
|
||||
Route::get('about', 'aboutController@index')->middleware('auth');
|
||||
Route::get('irc', function() { return view('irc'); });
|
||||
@@ -142,6 +143,8 @@ Route::group(["middleware" => "theme"], function() {
|
||||
Route::get('contact', function() { return view('contact'); });
|
||||
#Route::get('terms', function() { return view('tos'); })->middleware('auth');
|
||||
Route::get('privacy', function() { return view('privacy'); });
|
||||
Route::get('marderchen', function() { return view('marder'); });
|
||||
Route::get('blog', function() { return view('blog'); });
|
||||
Route::get('stats', function() {
|
||||
return view('stats', [
|
||||
'user_count' => \App\Models\User::count(),
|
||||
|
Reference in New Issue
Block a user