first commit

This commit is contained in:
2025-07-14 07:33:32 +00:00
commit 64f6de30fb
41 changed files with 958 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{% if posts.pagination.pages is not empty %}
<nav class="pagination-block">
<ul class="pagination">
{# First #}
{% if (posts.pagination.pages|first) and posts.pagination.pages|first.current != true %}
<li class="first btn">
<a href="{{ posts.pagination.pages|first.link }}">First</a>
</li>
{% else %}
<li class="first btn disabled"><button disabled>First</button></li>
{% endif %}
{# Previous #}
{% if posts.pagination.prev %}
<li class="prev btn"><a href="{{ posts.pagination.prev.link }}">Previous</a></li>
{% else %}
<li class="prev btn disabled"><button disabled>Previous</button></li>
{% endif %}
{# Pages #}
{% for page in posts.pagination.pages %}
{% if page.link %}
<li><a href="{{ page.link }}" class="{{ page.class }}">{{ page.title }}</a></li>
{% else %}
<li class="current"><span class="{{ page.class }}">{{ page.title }}</span></li>
{% endif %}
{% endfor %}
{# Next #}
{% if posts.pagination.next %}
<li class="next btn"><a href="{{ posts.pagination.next.link }}">Next</a></li>
{% else %}
<li class="next btn disabled"><button disabled>Next</button></li>
{% endif %}
{# Last #}
{% if (posts.pagination.pages|last) and posts.pagination.pages|last.current != true %}
<li class="last btn"><a href="{{ posts.pagination.pages|last.link }}">Last</a></li>
{% else %}
<li class="last btn disabled"><button disabled>Last</button></li>
{% endif %}
</ul>
</nav>
{% endif %}