I've got a basic portfolio website which has "prev project" and "next project" buttons on each entry detail page. I'd like for when you reach the last project for the "next project" button to simply link back to the first instead of simply not appearing at all.
Any idea how this could be done? Thanks so much in advance.
{% if nextEntry %}<a href="{{ nextEntry.url }}">Prev Project</a>{% endif %}
{% if prevEntry %}<a href="{{ prevEntry.url }}">Next Project</a>{% endif %}