Closed Anjade closed 1 year ago
` 'ready' => function ($kirby) {
$lang = $kirby->language(); $notePerPage = 2; // change later! $pagesCount = page('notes')->children()->listed()->count(); $pageNumbers = intval($pagesCount/$notePerPage); if (($pagesCount % $notePerPage) != 0) { $pageNumbers++; } for ($i = 2; $i <= $pageNumbers; $i++) { $myRoutes[] = [ 'path' => "$lang/notes/$i", 'route' => "notes/page:$i", ]; } return [ 'd4l.static_site_generator.custom_routes' => $myRoutes ];
}`
When i use this, it destroys some functions in the panel and on the dynamic page.
Duplicate of https://github.com/d4l-data4life/kirby3-static-site-generator/issues/64 Also I do not understand the issue, but it seems like you have already proceeded with your solution
` 'ready' => function ($kirby) {
}`
When i use this, it destroys some functions in the panel and on the dynamic page.