Navigation Menu

Skip to content

Commit

Permalink
feat(index): update pagination icons
Browse files Browse the repository at this point in the history
  • Loading branch information
blackjid committed Apr 22, 2015
1 parent 0f0860b commit b76d938
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Expand Up @@ -37,13 +37,13 @@ <h2 class="title"><a href="{{ post.url }}" rel="prefetch">{{ post.title }}</a></
{% endfor %}
<section class="pagination" style="text-align:center">
{% if paginator.next_page %}
<a href="/page{{ paginator.next_page }}" class="btn outline"> Anteriores</a>
<a href="/page{{ paginator.next_page }}" class="btn outline"><i class="fa fa-chevron-left"></i> Anteriores</a>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/" class="btn outline">Nuevos </a>
<a href="/" class="btn outline">Nuevos <i class="fa fa-chevron-right"></i></a>
{% else %}
<a href="/page{{ paginator.previous_page }}" class="btn outline">Newer </a>
<a href="/page{{ paginator.previous_page }}" class="btn outline">Newer <i class="fa fa-chevron-right"></i></a>
{% endif %}
{% endif %}
</section>
Expand Down

0 comments on commit b76d938

Please sign in to comment.