nouveau-theatre-de-besancon/site/config/routes/virtual-search.php

16 lines
361 B
PHP
Raw Normal View History

2024-09-12 14:57:54 +02:00
<?php
return [
'pattern' => '/recherche',
'action' => function () {
return Page::factory([
'slug' => 'search',
'template' => 'search',
'model' => 'search',
'content' => [
'title' => 'Recherche',
'uuid' => Kirby\Uuid\Uuid::generate(),
]
]);
}
];