world-game/site/config/config.php

50 lines
1.5 KiB
PHP
Raw Normal View History

2026-01-13 16:35:52 +01:00
<?php
return [
'debug' => true,
'languages' => true,
2026-01-13 16:35:52 +01:00
'panel' => [
'css' => 'assets/css/custom-panel.css',
2026-01-16 14:29:38 +01:00
'theme' => 'dark',
'menu' => require __DIR__ . '/menu.php',
2026-01-13 16:35:52 +01:00
],
'thumbs' => require __DIR__ . '/thumbs.php',
'routes' => [
require(__DIR__ . '/routes/download-white-paper.php')
],
'tobimori.seo' => [
'canonical' => [
'base' => 'https://world.game',
],
'sitemap' => [
'enabled' => true,
'locale' => 'fr',
'excludeTemplates' => ['error', 'default'],
'changefreq' => function (\Kirby\Cms\Page $page) {
return match ($page->intendedTemplate()->name()) {
'home', 'expertise', 'portfolio', 'play', 'about' => 'monthly',
'article', 'white-paper', 'game', 'project' => 'monthly',
default => 'weekly',
};
},
'priority' => function (\Kirby\Cms\Page $page) {
return match ($page->intendedTemplate()->name()) {
'home' => '1.0',
'expertise', 'portfolio', 'play', 'about' => '0.9',
'blog', 'white-papers' => '0.8',
'article', 'white-paper', 'game', 'project' => '0.7',
'privacy' => '0.3',
default => number_format(max(1 - 0.2 * $page->depth(), 0.2), 1),
};
},
],
'robots' => [
'enabled' => true,
],
],
];