Neighbor Articles Plugin for Pelican
====================================
This plugin adds ``next_article`` (newer) and ``prev_article`` (older)
variables to the article's context
Usage
-----
.. code-block:: html+jinja
{% if article.prev_article %}
{{ article.prev_article.title }}
{% endif %}
{% if article.next_article %}
{{ article.next_article.title }}
{% endif %}