Actually, you cannot do that.
You can only set how many entries to display per page. It doesn't make sense to have one page with 5 entries and the next page containing all the entries, IMHO.
What you could do, though, is to write a simple template instruction that sets the number of entries on the frontpage to 5 and for the rest of the pages to "15". To do that, set the s9y configuration number of entries per page to "15".
Then create a file "config.inc.php" inside the directory of the template you are using with this content:
Code: Select all
<?php
if (!isset($serendipity['GET']['category']) || empty($serendipity['GET']['category'])) {
$serendipity['fetchLimit'] = 5;
}
?>
I hope this does the trick for you.
Regards,
Garvin