feat: titre et claim configurables depuis l'admin

This commit is contained in:
Cedric Abonnel
2026-05-12 22:30:00 +02:00
parent 8f0fe0dbff
commit b81750616f
1015 changed files with 1832 additions and 1418 deletions
+3 -4
View File
@@ -127,7 +127,7 @@ if (!empty($_tagCats)):
<?php
$content = ob_get_clean();
$title = 'varlog';
$title = siteTitle();
// Pages avec curseur = contenu non-canonique → noindex
if (!empty($cursor)) {
@@ -144,11 +144,10 @@ if (empty($cursor) && $filterCat === '') {
$jsonLd = json_encode([
'@context' => 'https://schema.org',
'@type' => 'WebSite',
'name' => 'varlog',
'name' => siteTitle(),
'url' => rtrim(APP_URL, '/') . '/',
'description' => 'Journal personnel de Cédrix. Informatique, hack et loisirs techniques.',
'description' => siteClaim(),
'inLanguage' => 'fr-FR',
'author' => ['@type' => 'Person', 'name' => 'Cédrix'],
], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);
}