This is probably another ‘duh’ question, but I’m trying to include a previous/next link on my weblog entry page that would like to the previous/next entry in the weblog. This is inside the entry itself, not on the weblog.
An example entry I’m trying to add it to is here:
http://www.paul-rand.com/index.php/site/books-by-Rand/thoughts_on_design/
The code I’m using is:
{exp:weblog:entries weblog="booksByRand" paginate="top"}
<h8>Books & Articles</h8>
{paginate}
<div class="galleryNavigation">
<a href="http://{path=site/books}" class="arrowBack">Back to Index</a>
{if previous_page}
<a href="http://{auto_path}" class="arrowLeft">Previous</a>
{/if}
{if next_page}
<a href="http://{auto_path}" class="arrowRight">Next</a>
{/if}
</div>
{/paginate}Thanks for any help!
Daniel