{% set post = __SELF__.post %}
{% if post.image %}
{{ post.title }}
{% endif %} {% if post.images %}
{% for item in post.images %} {{ item.img_name }} {% endfor %}
{% endif %}

{{ post.title }}

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 %}
{{ post.content|raw }}
{% if post.files.count %}
Downloadable files:
{% for item in post.files %} {{ item.file_name }}{% if not loop.last %}
{% endif %} {% endfor %}

{% endif %} {% if related_blog.count %}
{% endif %} {% if related_news.count %}
{% endif %} {% if related_portfolio.count %}
{% endif %}
{% if post.prev().title %}Prev: {% endif %}
{% if post.next().title %}Next: {% endif %}
Return to News