OK, this sounds like an odd things to ask, but is there any way of modifying BlogHolder so that entries are displayed all on one page but with breaks where the pagination would usually occur?
So, instead of the following, which would usually occur with pagination:
/Page-1
<li>Blog article 1</li>
<li>Blog article 2</li> ....etc
/Page-2
<li>Blog article 11</li>
<li>Blog article 12</li> ....etc
/Page-3
<li>Blog article 21</li>
<li>Blog article 22</li> ....etc
We would have a single page, structured similar to this:
<h1>Page 1</h1>
<li>Blog article 1</li>
<li>Blog article 2</li> ....etc
<h1>Page 2</h1>
<li>Blog article 10</li>
<li>Blog article 11</li> ....etc
<h1>Page 3</h1>
<li>Blog article 20</li>
<li>Blog article 21</li> ....etc
Many thanks