--- layout: layouts/base.njk ---

{{ title }}

{{ content | safe }}
{%- if collections.posts %} {%- set previousPost = collections.posts | getPreviousCollectionItem %} {%- set nextPost = collections.posts | getNextCollectionItem %} {%- if nextPost or previousPost %}
{%- if previousPost %}
{{ previousPost.data.title }}
{% endif %} {%- if nextPost %}
{{ nextPost.data.title }}
{% endif %}
{%- endif %} {%- endif %}