mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-06 19:19:19 +02:00
- admin/edit.php: remove mb_strimwidth(60) truncation from access_type <select> option labels; full 'name — description' text is now the accessible name so screen readers get unambiguous option text (WCAG 4.1.2) - public/assets/favicon.svg: new public favicon — brand-purple (#9557b5) rounded square with white 'P' lettermark; distinct from admin_favicon.svg (archive-restore Lucide icon in #c104fc) which is admin-only - templates/head.php: favicon <link> now conditionally serves favicon.svg (public pages) or admin_favicon.svg (admin pages) based on $isAdmin; closes the open favicon task in todo/01-css-semantic-refactor.md - todo/04-accessibility.md: mark WCAG 3.1.1 lang audit and WCAG 4.1.2 select truncation items as done - todo/01-css-semantic-refactor.md: mark favicon task as done
77 lines
3.8 KiB
PHP
77 lines
3.8 KiB
PHP
<!DOCTYPE html>
|
||
<html lang="fr">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<?php
|
||
// Admin: append suffix to title and prepend admin.css
|
||
if (!empty($isAdmin)) {
|
||
$pageTitle = isset($pageTitle) ? $pageTitle . ' – Admin' : 'Admin';
|
||
$extraCss = array_merge(['/assets/css/admin.css'], $extraCss ?? []);
|
||
}
|
||
?>
|
||
<title><?= htmlspecialchars($pageTitle ?? 'Posterg') ?></title>
|
||
<?php if (empty($isAdmin)): ?>
|
||
<?php if (!empty($metaDescription)): ?>
|
||
<meta name="description" content="<?= htmlspecialchars($metaDescription) ?>">
|
||
<?php endif; ?>
|
||
<?php
|
||
// Open Graph / Twitter Card tags — populated per-page via $ogTags array.
|
||
// Keys: type, title, description, url, image, image_alt, site_name, article_author, article_published_time
|
||
if (!empty($ogTags)):
|
||
$ogType = $ogTags['type'] ?? 'website';
|
||
$ogTitle = $ogTags['title'] ?? ($pageTitle ?? 'Posterg');
|
||
$ogDescription = $ogTags['description'] ?? ($metaDescription ?? '');
|
||
$ogUrl = $ogTags['url'] ?? '';
|
||
$ogImage = $ogTags['image'] ?? '';
|
||
$ogImageAlt = $ogTags['image_alt'] ?? $ogTitle;
|
||
$ogSiteName = $ogTags['site_name'] ?? 'Posterg – ERG';
|
||
?>
|
||
<meta property="og:type" content="<?= htmlspecialchars($ogType) ?>">
|
||
<meta property="og:site_name" content="<?= htmlspecialchars($ogSiteName) ?>">
|
||
<meta property="og:title" content="<?= htmlspecialchars($ogTitle) ?>">
|
||
<?php if (!empty($ogDescription)): ?>
|
||
<meta property="og:description" content="<?= htmlspecialchars($ogDescription) ?>">
|
||
<?php endif; ?>
|
||
<?php if (!empty($ogUrl)): ?>
|
||
<meta property="og:url" content="<?= htmlspecialchars($ogUrl) ?>">
|
||
<?php endif; ?>
|
||
<?php if (!empty($ogImage)): ?>
|
||
<meta property="og:image" content="<?= htmlspecialchars($ogImage) ?>">
|
||
<meta property="og:image:alt" content="<?= htmlspecialchars($ogImageAlt) ?>">
|
||
<?php endif; ?>
|
||
<?php if (!empty($ogTags['article_author'])): ?>
|
||
<meta property="article:author" content="<?= htmlspecialchars($ogTags['article_author']) ?>">
|
||
<?php endif; ?>
|
||
<?php if (!empty($ogTags['article_published_time'])): ?>
|
||
<meta property="article:published_time" content="<?= htmlspecialchars($ogTags['article_published_time']) ?>">
|
||
<?php endif; ?>
|
||
<meta name="twitter:card" content="<?= !empty($ogImage) ? 'summary_large_image' : 'summary' ?>">
|
||
<meta name="twitter:title" content="<?= htmlspecialchars($ogTitle) ?>">
|
||
<?php if (!empty($ogDescription)): ?>
|
||
<meta name="twitter:description" content="<?= htmlspecialchars($ogDescription) ?>">
|
||
<?php endif; ?>
|
||
<?php if (!empty($ogImage)): ?>
|
||
<meta name="twitter:image" content="<?= htmlspecialchars($ogImage) ?>">
|
||
<meta name="twitter:image:alt" content="<?= htmlspecialchars($ogImageAlt) ?>">
|
||
<?php endif; ?>
|
||
<?php endif; ?>
|
||
<?php endif; ?>
|
||
<link rel="icon" type="image/svg+xml" href="/assets/<?= empty($isAdmin) ? 'favicon.svg' : 'admin_favicon.svg' ?>">
|
||
<link rel="stylesheet" href="/assets/css/modern-normalize.min.css">
|
||
<link rel="stylesheet" href="/assets/css/common.css">
|
||
<?php foreach ($extraCss ?? [] as $css): ?>
|
||
<link rel="stylesheet" href="<?= htmlspecialchars($css) ?>">
|
||
<?php endforeach; ?>
|
||
<?php if (php_sapi_name() === 'cli-server'): ?>
|
||
<script>
|
||
(function poll(){
|
||
fetch('/live-reload.php').then(r=>r.json()).then(d=>{
|
||
if(d.changed) location.reload(); else setTimeout(poll,1000);
|
||
}).catch(()=>setTimeout(poll,2000));
|
||
})();
|
||
</script>
|
||
<?php endif; ?>
|
||
</head>
|
||
<body class="<?= htmlspecialchars($bodyClass ?? '') ?>">
|