The Blogger "Notable" template's post pagination link on the bottom of the main page only shows a "More Posts" link. It's missing a "Previous Posts". It's also missing the traditional "Home" link. The "More Posts" link correctly disappears on the last page of posts.
I am looking to enable at least a "Previous Posts" link.
This appears to be intentional on the part of Google as the code includes this:
<div class='blog-pager container' id='blog-pager'> <b:include cond='data:newerPageUrl' name='previousPageLink'/> <b:include cond='data:olderPageUrl' name='nextPageLink'/> <b:include cond='data:view.url != data:blog.homepageUrl' name='homePageLink'/></div>
But in two locations each the code includes:
<b:includable id='previousPageLink'><!-- Don't show --></b:includable>
<b:includable id='homePageLink'><!-- Don't show --></b:includable>
I attempted to fix this by first altering this line:
<a expr:href='data:blog.homepageUrl'>Home</a>
The only thing that did was the "Home" link to appear on the last page of posts where the "More Posts" previous was placed. Several other examples found online could not be tried as they refer to code that no longer exists within templates.
I've also tried at least a dozen 3rd party numbered pagination coding schemes which overwrite Blogger's existing code, but those do not work correctly.
Any idea of how to fix the template to enable the links or 3rd party code that might work?