I would like the pagination for my entries to exist outside of the Channel Entries Tag. I understand that I have to use the Query Module so I enabled that but I can’t figure out the right code.
Below you see how I’m currently pulling the pagination (inside the Channel Entries Tag). This works but I would like it to be moved into the DIV marked with the comment.
Any ideas?
<div id="entry">
<div class="content blog">
{exp:channel:entries channel="blog" orderby="date" sort="desc" paginate="bottom" limit="1"}
<div class="blog_entry">
{entry_date format="%F %j, %Y"}
<h3 class="title"><a href="http://{url_title_path=blog/post}">{title}</a></h3>
{blog_post}
</div>
{paginate}
{pagination_links}
{/paginate}
{/exp:channel:entries}
</div>
</div>
<div class="pagination">
<!-- I'd like {paginate}{pagination_links}{/paginate} to be here! -->
</div>