{% extends "layouts/default.html" %}
{% block body_class %}post-template{% endblock %}
{% block content %}
{% if categories %}
in
{% for category in categories %}
{{ category.name|capitalize }}
{%- if not loop.last -%}
,
{% endif %}
{% endfor %}
{% endif %}
{{ title }}
{% if prev_post or next_post %}
{% endif %}
{% include "partials/footer.html" %}
{% endblock %}