diff --git a/TODO.md b/TODO.md index 8216407..f8a6275 100644 --- a/TODO.md +++ b/TODO.md @@ -5,3 +5,4 @@ - [x] system.css: retheme to site light palette — remove all `--sys-bg/border/text` dark tokens from variables.css; replace with standard `--bg-*`, `--border-*`, `--text-*` tokens; remap `--sys-syntax-*` to light-appropriate colours; remove dark terminal aesthetic - [x] SystemController: PHP-FPM status check — dynamically probe `phpX.Y-fpm` unit derived from running PHP version before static fallback list; add `php8.4-fpm` to cover current production PHP 8.4 - [x] Favicon: replace SVG placeholder with full PNG/ICO favicon set from `public/assets/favicon/` in `templates/head.php` +- [x] Rebrand: replace "PostErg" with "XAMXAM" in admin header link, default ``, and OG site_name fallback diff --git a/templates/head.php b/templates/head.php index 0b8cd14..6fbee50 100644 --- a/templates/head.php +++ b/templates/head.php @@ -10,7 +10,7 @@ $extraCss = array_merge(['/assets/css/admin.css'], $extraCss ?? []); } ?> - <title><?= htmlspecialchars($pageTitle ?? 'Posterg') ?> + <?= htmlspecialchars($pageTitle ?? 'XAMXAM') ?> @@ -25,7 +25,7 @@ $ogUrl = $ogTags['url'] ?? ''; $ogImage = $ogTags['image'] ?? ''; $ogImageAlt = $ogTags['image_alt'] ?? $ogTitle; - $ogSiteName = $ogTags['site_name'] ?? 'Posterg – ERG'; + $ogSiteName = $ogTags['site_name'] ?? 'XAMXAM – ERG'; ?> diff --git a/templates/header.php b/templates/header.php index 0ce0300..df10cda 100644 --- a/templates/header.php +++ b/templates/header.php @@ -13,7 +13,7 @@ $_thesisId = $_GET['id'] ?? null;