From 0391e93a4a68c2e4bd5e372b40e39d8dda96c269 Mon Sep 17 00:00:00 2001 From: crunk Date: Fri, 22 Apr 2022 21:48:19 +0200 Subject: [PATCH] Update 'themes/varia/templates/pagination.html' fixed issue pagination language url for the English language --- themes/varia/templates/pagination.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/themes/varia/templates/pagination.html b/themes/varia/templates/pagination.html index cc61d5b..705f29d 100644 --- a/themes/varia/templates/pagination.html +++ b/themes/varia/templates/pagination.html @@ -1,11 +1,12 @@ {% if DEFAULT_PAGINATION %}

{% if articles_page.has_previous() %} - « + + « {% endif %} Page {{ articles_page.number }} / {{ articles_paginator.num_pages }} {% if articles_page.has_next() %} - » + » {% endif %}

{% endif %}