diff --git a/src/main/php/de/thekid/dialog/web/Feed.php b/src/main/php/de/thekid/dialog/web/Feed.php index 07b4987..fe92c0e 100755 --- a/src/main/php/de/thekid/dialog/web/Feed.php +++ b/src/main/php/de/thekid/dialog/web/Feed.php @@ -5,7 +5,7 @@ #[Handler('/feed')] class Feed { - private $pagination= new Pagination(5); + private $pagination= new Pagination(8); public function __construct(private Repository $repository) { } diff --git a/src/main/php/de/thekid/dialog/web/Home.php b/src/main/php/de/thekid/dialog/web/Home.php index 8587559..a95e180 100755 --- a/src/main/php/de/thekid/dialog/web/Home.php +++ b/src/main/php/de/thekid/dialog/web/Home.php @@ -12,7 +12,7 @@ public function __construct(private Repository $repository) { } public function index() { return View::named('home')->with([ 'cover' => $this->repository->entry('@cover'), - 'newest' => $this->repository->newest(6), + 'newest' => $this->repository->newest(9), ]); }