Simple blogger 'pagination'
I hate the fact that blogger doesn’t have some kind of pagination, so I thought I’d just
put the archive links on the bottom of the page, so users can swift through the blog more easily.
Edit your template ,
After: <!— End #content-wrapper —>
Add:
<div id=”pagination”>
More:
<bloggerarchives>
<a href=”“>”><$BlogArchiveName$></a> /
</bloggerarchives>
</div>
<br />
</code>
And add this into the top of the template, where the styles are.
#pagination{
font-size:12px;
padding-left:30px;
width:240px;
}
And you have a simple pagination, as you can see on the bottom of my blog. :)
Advanced:
If you want the user to automatically jump to the last post viewed, do the following:
After: <!— Begin .post —>
Add: <script>lastPostNumber= ‘<$BlogItemNumber$>’ </script>
And change the pagination div into this:
<div id=”pagination”>
More:
<bloggerarchives>
<a href=”“>” onclick=”window.location = this.href+’#’+lastPostNumber;return false;”><$BlogArchiveName$></a> /
</bloggerarchives>
</div>
<br />
source: damndom.blogspot.com