diff --git a/templates/memberships/single.html b/templates/memberships/single.html index f9455234c..e357e75fb 100644 --- a/templates/memberships/single.html +++ b/templates/memberships/single.html @@ -1,6 +1,88 @@ {% extends "index.html" %} {% block content %} - - {% endblock content %} + +{% if not paginator %} + {% set paginator = section %} +{% endif %} + +{% set path_array = current_path | split(pat="/") %} +{% set taxonomy = path_array[1] %} +{% set category = path_array[2] %} +{% if path_array | length < 3%} +{% set category = "All" %} +{% endif %} + +
+ {% if paginator.previous %} + {% include "partials/icons/svgPrevPageIcon.html" %}{% include + "partials/icons/svgPrevPageIcon.html" %} + + {% include "partials/icons/svgPrevPageIcon.html" %} + + {% else %} {% + include "partials/icons/svgFirstPageIcon.html" %}{% include + "partials/icons/svgFirstPageIcon.html" %} + {% include + "partials/icons/svgFirstPageIcon.html" %} + + {% endif %} {% if + paginator.next %} + {% include "partials/icons/svgNextPageIcon.html" %} + + {% include "partials/icons/svgNextPageIcon.html" %}{% include + "partials/icons/svgNextPageIcon.html" %} + {% else %} {% include "partials/icons/svgLastPageIcon.html" %} + {% include + "partials/icons/svgLastPageIcon.html" %}{% include + "partials/icons/svgLastPageIcon.html" %} {% endif %} +
+