{% if page.categories %} {% assign category = page.categories[0] %} {% assign posts = site.categories[category] %} {% for post in posts %} {% if post.url == page.url %} {% assign post_index0 = forloop.index0 %} {% assign post_index1 = forloop.index %} {% endif %} {% endfor %} {% for post in posts %} {% if post_index0 == forloop.index %} {% assign next_post = post %} {% endif %} {% if post_index1 == forloop.index0 %} {% assign prev_post = post %} {% endif %} {% endfor %} {% endif %} {% assign user_url = site.url | append: site.baseurl %} {% assign full_base_url = user_url | default: site.github.url %} {% if prev_post %}
Previous

{{ page.previous.content | strip_html | truncatewords:20 }}

{% endif %} {% if next_post %}
Next

{{ page.next.content | strip_html | truncatewords:20 }}

{% endif %}