From 0e9b8914e9142fe89c7800874a918e980a155ae7 Mon Sep 17 00:00:00 2001 From: Qiangjun Ran Date: Wed, 15 Oct 2014 19:52:10 +0800 Subject: [PATCH] fix pagination url separator bug (there is backslash in url) --- pelican/themes/simple/templates/pagination.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pelican/themes/simple/templates/pagination.html b/pelican/themes/simple/templates/pagination.html index 4219a5c3..5a0f9e69 100644 --- a/pelican/themes/simple/templates/pagination.html +++ b/pelican/themes/simple/templates/pagination.html @@ -1,11 +1,11 @@ {% if DEFAULT_PAGINATION %}

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

{% endif %}