DEV Community

Discussion on: List all posts using 11ty

Collapse
 
bayuangora profile image
Bayu Angora

I have this code for my prev next post ->

<div class="pagination">
<a class="prev" href="{{ prevPost.url }}">« Prev Post</a>
<a class="next" href="{{ nextPost.url }}">Next Post »</a>
</div>

But it doesn't works and always return to that current post. How to fix it?