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

{{ article.title }}

{% endblock %} {% block content %}

{{ article.body }}

{% if (article.user) %} {% if (article.user.name) %} {% set name = article.user.name %} {% else %} {% set name = article.user.username %} {% endif %} {{ name }} {% 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 %}