correcting typo: elif to elsif

This commit is contained in:
Christian Trosell 2015-11-14 21:15:57 +01:00
parent 5da9333f69
commit f69c920364
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ page with links to all but the current page.
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<em>{{ page }}</em>
{% elif page == 1 %}
{% elsif page == 1 %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>