look what i've found...

My bright resort. Bits and pieces of salvage from once a beautiful place. Follow each link to dig deeper. Most sources are listed.
Also here: stuff that won't fit anywhere else...
Jul 13
Permalink

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