ndarville / ndarville.github.io

Programming-focused blog of ndarville
ndarville.github.io
0 stars 0 forks source link

Next and Prev links #9

Open ndarville opened 10 years ago

ndarville commented 10 years ago
{% if paginator.previous_page %}
        <link rel="prev" href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" />
    {% endif %}
    {% if paginator.next_page %}
        <link rel="next" href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" />
    {% endif %}

http://jekyllrb.com/docs/pagination/