{% extends '@RapsysBlog/_base.html.twig' %} {% block title %}{% endblock %} {% block content %}

{{ title }}

{% trans with {'%date%': article.created|format_datetime('full', 'short')} %}Published the %date%{% endtrans %}{% if article.created != article.updated %}{% trans with {'%date%': article.updated|format_datetime('short', 'short')} %}, edited the %date%{% endtrans %}{% endif %}

{{ article.body|markdown_to_html }}
{% endblock %}