{% extends '../layouts/default.html' %} {% block main %}

{{ section.title }}

{% endblock %} {% block content %}

{{ article.body }}

{% if (article.user) %} Author:   {{ article.user.name || article.user.username }} {% endif %} {% if (article.tags) %}

Tags:   {% for tag in article.tags.split(',') %}   {{ tag }}    {% endfor %}

{% endif %} {{ article.createdAt.toISOString()|date('M d, Y h:m a') }}
{% if (!article.isNew && article.image && article.image.files && article.image.files.length) %} {% endif %}

Edit  

Comments

{% for comment in article.comments %} {% include '../comments/comment.html' %} {% endfor %} {% include '../comments/form.html' %} {% endblock %}