- Add SEO tab to site blueprint - Configure canonical base URL in config - Include SEO head snippet in header - Include SEO schemas snippet in footer Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
37 lines
No EOL
1 KiB
PHP
37 lines
No EOL
1 KiB
PHP
<?php
|
|
|
|
return [
|
|
'debug' => true,
|
|
'languages' => true,
|
|
'date.handler' => 'intl',
|
|
'thumbs' => [
|
|
'quality' => 80,
|
|
'presets' => [
|
|
'grid' => 400,
|
|
'default' => [
|
|
'width' => 1024, 'format' => 'webp'
|
|
],
|
|
'full' => 2048,
|
|
'format' => 'webp'
|
|
],
|
|
'srcsets' => [
|
|
'default' => [200, 400, 600, 800, 1024, 1440, 2048],
|
|
'webp' => [
|
|
'300w' => ['width' => 300 * 1.2, 'format' => 'webp'],
|
|
'600w' => ['width' => 600 * 1.2, 'format' => 'webp'],
|
|
'900w' => ['width' => 900 * 1.2, 'format' => 'webp'],
|
|
'1200w' => ['width' => 1200 * 1.2, 'format' => 'webp'],
|
|
],
|
|
],
|
|
],
|
|
'panel' => [
|
|
'menu' => require_once __DIR__ . '/menu.php'
|
|
],
|
|
'donorbox' => [
|
|
'api_key' => '', // À remplir avec la clé API Donorbox
|
|
'campaign_slug' => 'soutenir-index-en-2024',
|
|
'campaign_url' => 'https://donorbox.org/soutenir-index-en-2024',
|
|
'api_base_url' => 'https://donorbox.org/api/v1'
|
|
],
|
|
'tobimori.seo.canonicalBase' => 'https://www.index.ngo'
|
|
]; |