diff --git a/templates/components/pagination.html b/templates/components/pagination.html index ebca6b3a..5b1c84a9 100644 --- a/templates/components/pagination.html +++ b/templates/components/pagination.html @@ -11,20 +11,10 @@ {% set button_class = button_class + "usa-button-secondary" %} {% endif %} - {{ label }} + {{ label }} {%- endmacro %} {% macro Pagination(pagination, route) -%} - {% set first %} - {{ Page(pagination, route, 1, label="first") }} - {{ Page(pagination, route, pagination.page - 1, label="prev") }} - {% endset %} - - {% set last %} - {{ Page(pagination, route, pagination.page + 1, label="next") }} - {{ Page(pagination, route, pagination.pages, label="last") }} - {% endset %} -