dash-website/_includes/pagination_navigation.html
Perry Woodin 01c297d5e7 Blog section
The blog is driven by the _posts directory nested in each language.
2016-07-14 14:05:47 -04:00

10 lines
No EOL
406 B
HTML

<!-- Pagination links -->
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous">&laquo; Previous</a>
{% endif %}
<span class="page_number ">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">Next &raquo;</a>
{% endif %}
</div>