infinite-jekyll
infinite-jekyll copied to clipboard
infinite-jekyll - bootstrap theme
in my theme if have a pager as pagination. i wondering.. if this play a role?
because bootstrap is based on (ul) and (li).....
!-- Pager -->
{% if paginator.total_pages > 1 %}
ul class="pager"
{% if paginator.previous_page %}
li class="previous"
a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a
/li
{% endif %}
{% if paginator.next_page %}
li class="next"
a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a
</li
{% endif %}
/ul>
{% endif %}