diff options
author | HombreLaser <sebastian-440@live.com> | 2024-05-07 11:45:46 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2024-05-07 11:45:46 -0600 |
commit | a4c0692f8dbab80cf5c0b5644ec050322040c4e3 (patch) | |
tree | 3ea2f9dc891a13bbcf8b8980c5bf6f2ebb0b9dc2 /_includes/pagination.html | |
parent | acc3c3caf7029f92a2b146c29a510181c1b42a65 (diff) |
Add dark theme
Diffstat (limited to '_includes/pagination.html')
-rw-r--r-- | _includes/pagination.html | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/_includes/pagination.html b/_includes/pagination.html deleted file mode 100644 index f692362..0000000 --- a/_includes/pagination.html +++ /dev/null @@ -1,49 +0,0 @@ -{% if paginator.total_pages > 1 %} -<div class="column"> - <div class="pagination"> - {% if paginator.previous_page %} - <div class="column"> - <a href="{{ paginator.previous_page_path | relative_url }}" rel="prev"> - <i class="bi bi-chevron-left"></i> - </a> - </div> - {% endif %} - - {% if paginator.page == 1%} - <div class="column"> - <em>{% t index.first%}</em> - </div> - {% else %} - <div class="column"> - <a href="/"> - {% t index.first %} - </a> - </div> - {% endif %} - - <div class="column"> - {% t index.page %} {{ paginator.page }} {% t index.of %} {{ paginator.total_pages }} - </div> - - {% if paginator.page == paginator.total_pages %} - <div class="column"> - <em>{% t index.last %}</em> - </div> - {% else %} - <div class="column"> - <a href="{{ site.paginate_path | relative_url | replace: ':num', paginator.total_pages }}"> - {% t index.last %} - </a> - </div> - {% endif %} - - {% if paginator.next_page %} - <div class="column"> - <a href="{{ paginator.next_page_path | relative_url }}" rel="next"> - <i class="bi bi-chevron-right"></i> - </a> - </div> - {% endif %} - </div> -</div> -{% endif %} |