mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2025-03-13 10:56:35 -04:00
15 lines
714 B
Twig
15 lines
714 B
Twig
{%- if page.paginator ~%}
|
|
{%- set links = page.paginator.links ~%}
|
|
<div class="page-nav">
|
|
{%- if links.prev is defined ~%}
|
|
<a class="page-nav prev" href="{{ url(links.prev) }}">{% trans %}Previous{% endtrans %}</a>
|
|
{%- else ~%}
|
|
<span class="page-nav prev">{% trans %}Previous{% endtrans %}</span>
|
|
{%- endif ~%}
|
|
{%- if links.next is defined ~%}
|
|
<a class="page-nav next" href="{{ url(links.next) }}">{% trans %}Next{% endtrans %}</a>
|
|
{%- else ~%}
|
|
<span class="page-nav next">{% trans %}Next{% endtrans %}</span>
|
|
{%- endif ~%}
|
|
</div>
|
|
{%- endif ~%} |