2
0
mirror of synced 2025-02-24 17:08:11 +00:00
blog/themes/embark/layout/partial/paginator.swig
Jakub Sokołowski c7acd418c2
first commit
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2020-06-18 12:29:57 +02:00

14 lines
476 B
Plaintext

<div class="o-flex o-flex-space-between">
{% if next !== null %}
<div class="o-flex__item">
<a href="/{{next.path}}" class="c-button c-button--quite" title="{{__('paginator.prev.title')}}">{{__('paginator.prev.label')}}</a>
</div>
{% endif %}
{% if prev !== null %}
<div class="o-flex__item">
<a href="/{{prev.path}}" class="c-button c-button--quite" title="{{__('paginator.next.title')}}">{{__('paginator.next.label')}}</a>
</div>
{% endif %}
</div>