Remove "article" from next/previous links

This commit is contained in:
Michael Rose 2014-08-08 16:15:24 -04:00
parent edfa40d322
commit c9e8382c03

View file

@ -54,10 +54,10 @@
{{ content }} {{ content }}
<nav class="pagination" role="navigation"> <nav class="pagination" role="navigation">
{% if page.previous %} {% if page.previous %}
<a href="{{ site.url }}{{ page.previous.url }}" class="btn" title="{{ page.previous.title }}">Previous article</a> <a href="{{ site.url }}{{ page.previous.url }}" class="btn" title="{{ page.previous.title }}">Previous</a>
{% endif %} {% endif %}
{% if page.next %} {% if page.next %}
<a href="{{ site.url }}{{ page.next.url }}" class="btn" title="{{ page.next.title }}">Next article</a> <a href="{{ site.url }}{{ page.next.url }}" class="btn" title="{{ page.next.title }}">Next</a>
{% endif %} {% endif %}
</nav><!-- /.pagination --> </nav><!-- /.pagination -->
{% if site.owner.disqus-shortname and page.comments == true %}<div id="disqus_thread"></div><!-- /#disqus_thread -->{% endif %} {% if site.owner.disqus-shortname and page.comments == true %}<div id="disqus_thread"></div><!-- /#disqus_thread -->{% endif %}