Update pagination.md

elsif -> elif
This commit is contained in:
Nicole White 2015-11-11 15:41:17 -08:00
parent 59f80ac371
commit 55a759357e
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>
{% elsif page == 1 %}
{% elif 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>