---
layout: layouts/base.njk
---
{{ title }}
by
{{ author.name or metadata.author.name }}
{% if series %}
{% endif %}
{{ content | safe }}
{% if collections.posts %}
{% set previousPost = collections.posts | getPreviousCollectionItem %}
{% set nextPost = collections.posts | getNextCollectionItem %}
{% if nextPost or previousPost %}
{% endif %}
{% endif %}
{% if series %}
{% set seriesName = series.name %}
{% endif %}