Mercurial > libervia-templates
view sat_templates/templates/bulma/input/navigation.html @ 393:772e73148132
browser (meta): fix the version of Bulma:
Bulma version is fixed to 0.9.4 as we are not yet compatible with the new 1.0 version.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 06 Apr 2024 13:07:26 +0200 |
parents | 3db3509cbad1 |
children |
line wrap: on
line source
{% macro prev_next(prev_label=_("older"), next_label=_("newer")) %} <section class="section"> <nav class="pagination is-rounded" role="navigation" aria-label="pagination"> {% if previous_page_url is defined %} <a href="{{previous_page_url}}" class="pagination-previous has-background-white">{{prev_label}}</a> {% else %} <a class="pagination-previous pagination-disabled has-background-white has-text-grey-light has-hover-white-light">{{prev_label}}</a> {% endif %} {% if next_page_url is defined %} <a href="{{next_page_url}}" class="pagination-next has-background-white">{{next_label}}</a> {% else %} <a class="pagination-next pagination-disabled has-background-white has-text-grey-light has-hover-white-light">{{next_label}}</a> {% endif %} </nav> </section> {% endmacro %}