I'm in the process of finalising a pw 3.0.62 and uikit3 based site which using the Reglar-Master profile and I've noticed pagination is missing despite the Allow Page Numbers? setting being enabled under the blog template URLs tab.
The default blog.php template is as below:
<div id='content'>
<?php
echo ukHeading1(page()->title, 'divider');
$posts = page()->children('limit=10');
echo ukBlogPosts($posts);
?>
</div>
Reducing the limit as follows does not result in any pagination being displayed despite there being 10 news posts.
...
$posts = page()->children('limit=6');
...
If I have understood correctly, it should not be necessary to add the MarkupPagerNav module to this profile as the capability should already be already built-in.
If that is the case, then I can only think that some additional code is required.
Any help would be greatly appreciated.