rebuild with purecss instead of bootstrap

This commit is contained in:
2021-08-06 08:15:43 -07:00
parent ab06644a12
commit 097f07df6e
19 changed files with 404 additions and 145 deletions

View File

@ -0,0 +1,11 @@
{% if DEFAULT_PAGINATION %}
<div class="paginator" style="display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 15px;">
{% if articles_page.has_previous() %}
<a href="{{ SITEURL }}/{{ articles_previous_page.url }}">&laquo;</a>
{% endif %}
<div style="margin-bottom: 20px;">Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}</div>
{% if articles_page.has_next() %}
<a href="{{ SITEURL }}/{{ articles_next_page.url }}">&raquo;</a>
{% endif %}
</div>
{% endif %}