Posted on {{ post.published_at|date('Y-m-d G:i') }}
{% if post.categories.count %}
| Category:
{% for category in post.categories %}
{{ category.name }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% if post.tags.count %}
| Tags:
{% for tag in post.tags %}
{{ tag.name }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% if post.prev().title %}Prev:
{{ post.prev().title }}{% endif %}
{% if post.next().title %}Next:
{{ post.next().title }}{% endif %}