---
layout: layouts/base.njk
templateClass: tmpl-post
---
{{ title }}
{%- for tag in tags | filterTagList %}
{%- set tagUrl %}/tags/{{ tag | slugify }}/{% endset %}
- #{{ tag }}{%- if not loop.last %} {% endif %}
{%- endfor %}
{{ content | safe }}
{% set i18nLinks = page.url | locale_links %}
{% if i18nLinks.length %}
-
{{ "i18n.also" | i18n }}
{%- for link in i18nLinks %}
{{ link.label }}
{%- if not loop.last %},{% endif %}
{%- endfor -%}
{% endif %}
{%- if collections.posts %}
{# these filters are locale-aware in 2.0.0-canary.14 #}
{%- set previousPost = collections.posts | getPreviousCollectionItem %}
{%- set nextPost = collections.posts | getNextCollectionItem %}
{%- if nextPost or previousPost %}
{%- endif %}
{%- endif %}