true, 'languages' => true, 'panel' => [ 'css' => 'assets/css/custom-panel.css', 'theme' => 'dark', 'menu' => require __DIR__ . '/menu.php', ], '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, ], ], ];