Wordpress : Previous / next post

Get and link the previous and next post

<div class="nextprev">
	{% if post.next %}
		<p class="next"><a href="{{post.next.link}}" title="{{post.next.title|truncate(100,true)}}">{{post.next.title|truncate(7,true)}} &nbsp;›</a></p>
	{% endif %}
	{% if post.prev %}
		<p class="prev"><a href="{{post.prev.link}}" title="{{post.prev.title|truncate(100,true)}}">‹&nbsp; {{post.prev.title|truncate(7,true)}}</a></p>
	{% endif %}
</div>