{% 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') }}