post-pagination.html 247 B

12345678
  1. <div id="prev-next">
  2. {% if post.prev %}
  3. <a href="{{post.prev.uri}}">&laquo; {{post.prev.title}}</a>
  4. {% endif %}
  5. {% if post.next %}
  6. <a class="right" href="{{post.next.uri}}">{{post.next.title}} &raquo;</a>
  7. {% endif %}
  8. </div>