Limited Content on page

GoodMorning everyone, i had a question i just installed starter-kit, i wanted to make blog, and i wanted to limit the content on the home page. like to 9 articles.

But I don’t really know how to do it, because I am beginner if someone could help me, i would be very
grateful.

Screenshot= Homepage.

As you can see in the home.php template, what is shown on the homepage are the children of the photography page: https://github.com/getkirby/starterkit/blob/54b9ba3047c935d91651323ad9e2946651d31fbd/site/templates/home.php#L24

<?php foreach ($photographyPage->children()->listed() as $album): ?>

You can limit the number of children shown using the limit() method:

<?php foreach ($photographyPage->children()->listed()->limit(9) as $album): ?>
1 Like

Yes thats it ! Thank you very much , for quick reply.