aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/pagination.html
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2016-12-13 10:33:27 -0800
committerGitHub <noreply@github.com>2016-12-13 10:33:27 -0800
commitb6ab2ad418b634eda366026855be0574703281d7 (patch)
tree218cfce1037c099a650cbb382b69d50de681f5e8 /pelican-bootstrap3/templates/includes/pagination.html
parent30c807519db25e1c9246a6c53b7545b36a2f1895 (diff)
parentdb5388e47885b76083ee6a169863b5e718ca1246 (diff)
downloadpelican-themes-b6ab2ad418b634eda366026855be0574703281d7.tar.gz
Merge pull request #441 from jranke/i18n
Make pelican-bootstrap3 multilingual
Diffstat (limited to 'pelican-bootstrap3/templates/includes/pagination.html')
-rw-r--r--pelican-bootstrap3/templates/includes/pagination.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/pelican-bootstrap3/templates/includes/pagination.html b/pelican-bootstrap3/templates/includes/pagination.html
index e74cdba..cb34fa5 100644
--- a/pelican-bootstrap3/templates/includes/pagination.html
+++ b/pelican-bootstrap3/templates/includes/pagination.html
@@ -2,15 +2,15 @@
{% if USE_PAGER %}
<ul class="pager">
{% if articles_page.has_previous() %}
- <li class="previous"><a href="{{ SITEURL }}/{{ articles_previous_page.url }}">&larr; Newer</a></li>
+ <li class="previous"><a href="{{ SITEURL }}/{{ articles_previous_page.url }}">&larr; {{ _('Newer') }}</a></li>
{% else %}
- <li class="previous disabled"><a href="#">&larr; Newer</a></li>
+ <li class="previous disabled"><a href="#">&larr; {{ _('Newer') }}</a></li>
{% endif %}
{% if articles_page.has_next() %}
<li class="next"><a
- href="{{ SITEURL }}/{{ articles_next_page.url }}">Older &rarr;</a></li>
+ href="{{ SITEURL }}/{{ articles_next_page.url }}">{{ _('Older') }} &rarr;</a></li>
{% else %}
- <li class="next disabled"><a href="#">Older &rarr;</a></li>
+ <li class="next disabled"><a href="#">{{ _('Older') }} &rarr;</a></li>
{% endif %}
</ul>
{% else %}
@@ -34,4 +34,4 @@
{% endif %}
</ul>
{% endif %}
-{% endif %} \ No newline at end of file
+{% endif %}