Upload beautify

This commit is contained in:
2026-02-14 15:14:12 +01:00
parent e129618910
commit 79192345e3
249 changed files with 24436 additions and 1021 deletions

View File

@@ -46,25 +46,6 @@ Route::get('/news/{id}/{slug?}', [NewsController::class, 'show'])->where('id', '
Route::get('/categories', [CategoryController::class, 'index'])->name('legacy.categories');
Route::get('/category/{group}/{slug?}/{id?}', [CategoryController::class, 'show'])->name('legacy.category');
// Short legacy routes for top-level category URLs like /Photography/3
// Short legacy routes for top-level category URLs (mapped to CategoryController@show)
/*
Route::get('/Photography/{id}', [CategoryController::class, 'show'])
->defaults('group', 'Photography')
->where('id', '\\d+');
Route::get('/Wallpapers/{id}', [CategoryController::class, 'show'])
->defaults('group', 'Wallpapers')
->where('id', '\\d+');
Route::get('/Skins/{id}', [CategoryController::class, 'show'])
->defaults('group', 'Skins')
->where('id', '\\d+');
Route::get('/Other/{id}', [CategoryController::class, 'show'])
->defaults('group', 'Other')
->where('id', '\\d+');
*/
Route::get('/browse', [BrowseController::class, 'index'])->name('legacy.browse');
Route::get('/featured', [FeaturedArtworksController::class, 'index'])->name('legacy.featured');
Route::get('/featured-artworks', [FeaturedArtworksController::class, 'index'])->name('legacy.featured_artworks');
@@ -104,9 +85,6 @@ Route::middleware('auth')->get('/recieved-comments', [ReceivedCommentsController
// User account settings (legacy /user)
Route::middleware('auth')->match(['get','post'], '/user', [LegacyUserController::class, 'index'])->name('legacy.user');
// Content-type landing pages (legacy look)
Route::get('/photography', [PhotographyController::class, 'index'])->name('legacy.photography');
Route::get('/today-in-history', [TodayInHistoryController::class, 'index'])->name('legacy.today_in_history');
Route::get('/today-downloads', [TodayDownloadsController::class, 'index'])->name('legacy.today_downloads');