- 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
19 lines
791 B
PHP
19 lines
791 B
PHP
<?php
|
|
/**
|
|
* $store: store doc (code, name, kind, color, textcolor, logo)
|
|
* $size : optional size modifier (sm | lg)
|
|
*/
|
|
$logo = $store['logo'] ?? null;
|
|
$size = $size ?? '';
|
|
?>
|
|
<?php if ($logo !== null): ?>
|
|
<span class="store-badge <?= $size ?>" style="background: <?= esc($store['color']) ?>; color: <?= esc($store['textcolor'] ?? '#fff') ?>;"
|
|
title="<?= esc($store['name']) ?>">
|
|
<img src="<?= esc($logo) ?>" alt="<?= esc($store['name']) ?> logo" class="store-badge-logo" loading="lazy">
|
|
</span>
|
|
<?php else: ?>
|
|
<span class="store-badge <?= $size ?>" style="background: <?= esc($store['color']) ?>; color: <?= esc($store['textcolor'] ?? '#fff') ?>;" title="<?= esc($store['name']) ?>">
|
|
<?= store_initials($store['name']) ?>
|
|
</span>
|
|
<?php endif; ?>
|