- Full gg.deals-style UI: deal feed with filters, game pages with price history charts, rankings, vouchers, news, prepaids, subscriptions, bundles, franchises, wishlist, API docs - Real data crawlers: * gg:crawl (Steam Store API + GOG Catalog + Epic free games) * gg:catalog (252K game slugs from gg.deals sitemaps) * gg:ggdeals (per-game prices via FlareSolverr session, JSON-LD parsing) * gg:seed / gg:crawl-covers (demo seed + Steam CDN cover art) - 24/7 self-updating scheduler (scripts/scheduler_loop.php, lockfile-protected) - Tailwind v4 dark/light theme, Alpine.js, Chart.js
26 lines
500 B
PHP
26 lines
500 B
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="robots" content="noindex">
|
|
|
|
<title><?= lang('Errors.whoops') ?></title>
|
|
|
|
<style>
|
|
<?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?>
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container text-center">
|
|
|
|
<h1 class="headline"><?= lang('Errors.whoops') ?></h1>
|
|
|
|
<p class="lead"><?= lang('Errors.weHitASnag') ?></p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|