From 8a79253a14a517b0f96d6972337b843b8578f596 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 25 Jan 2021 21:48:05 -0800 Subject: html: update next/prev links to used named HTML entities Also, include the entities in the translation string (for clarify and RTL translation). --- fatcat_scholar/templates/search_macros.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'fatcat_scholar/templates') diff --git a/fatcat_scholar/templates/search_macros.html b/fatcat_scholar/templates/search_macros.html index 613feac..db46d5f 100644 --- a/fatcat_scholar/templates/search_macros.html +++ b/fatcat_scholar/templates/search_macros.html @@ -490,18 +490,18 @@ {% macro search_pagination(hits, top) %} {% if hits.offset > 0 %} {% else %} - « {% trans %}Previous{% endtrans %} + {% trans %}« Previous{% endtrans %} {% endif %} {% if hits.offset + hits.limit < hits.count_found %} {% else %} - {% trans %}Next{% endtrans %} » + {% trans %}Next »{% endtrans %} {% endif %} -- cgit v1.2.3