Sha256: 60a198d911b37f994f1ec5058c90f70023d6bc4323a2f2a1a5939581488f5144
Contents?: true
Size: 1.37 KB
Versions: 9
Compression:
Stored size: 1.37 KB
Contents
{%- assign theme = site.data.theme.UI -%} <!-- pagination --> <div class="bottompagination"> <div class="pointerup"><i class="fa fa-caret-up"></i></div> <span class="navigation" role="navigation"></span> </div> {% if paginator.total_pages > 1 %} <div class="blog-pagination"> {% if paginator.previous_page %} <a style="color: {{theme.color}}; font-weight: 900;" href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">« Prev</a> {% else %} <span class="text-muted">« Prev</span> {% endif %} {% for page in (1..paginator.total_pages) %} {% if page == paginator.page %} <span class="webjeda text-muted">{{ page }}</span> {% elsif page == 1 %} <a href="/blog" style="color: {{theme.color}}; font-weight: 900;">{{ page }}</a> {% else %} <a style="color: {{theme.color}}; font-weight: 900;" href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a> {% endif %} {% endfor %} {% if paginator.next_page %} <a style="color: {{theme.color}}; font-weight: 900;" href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next »</a> {% else %} <span class="text-muted">Next »</span> {% endif %} </div> {% endif %}
Version data entries
9 entries across 9 versions & 2 rubygems