From eb0f33df165ffcfb7750fc418e14d23c871673f6 Mon Sep 17 00:00:00 2001 From: Laureline Guerin Date: Tue, 15 Feb 2011 13:48:14 +0100 Subject: [PATCH] Pagination - rename template --- pelican/themes/notmyidea/templates/index.html | 4 ++-- .../notmyidea/templates/{paginator.html => pagination.html} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename pelican/themes/notmyidea/templates/{paginator.html => pagination.html} (100%) diff --git a/pelican/themes/notmyidea/templates/index.html b/pelican/themes/notmyidea/templates/index.html index 57b7c1a7..ded814ff 100644 --- a/pelican/themes/notmyidea/templates/index.html +++ b/pelican/themes/notmyidea/templates/index.html @@ -12,7 +12,7 @@ {% include 'comments.html' %} {% if loop.length == 1 %} - {% include 'paginator.html' %} + {% include 'pagination.html' %} {% endif %} {% if loop.length > 1 %} @@ -40,7 +40,7 @@ {% endif %} {% if loop.last and (articles_page.has_previous() or not articles_page.has_previous() and loop.length > 1) %} - {% include 'paginator.html' %} + {% include 'pagination.html' %} {% endif %} {% endfor %} diff --git a/pelican/themes/notmyidea/templates/paginator.html b/pelican/themes/notmyidea/templates/pagination.html similarity index 100% rename from pelican/themes/notmyidea/templates/paginator.html rename to pelican/themes/notmyidea/templates/pagination.html