mmk2410.org/site/controllers/blog.php

20 lines
404 B
PHP
Raw Normal View History

2024-03-17 22:34:51 +01:00
<?php
2025-01-30 19:52:03 +01:00
use Kirby\Cms\Page;
return function (Page $page, ?string $tag, ?string $category): array {
2024-03-17 22:34:51 +01:00
$articles = $page->children()->listed();
if ($tag) {
$articles = $articles->filterBy('tags', $tag, ',');
}
if ($category) {
$articles = $articles->filterBy('categories', $category, ',');
}
return [
'articles' => $articles->flip()->paginate(20)
];
};