1 {% extends '@RapsysBlog/_base.html.twig' %}
5 <h1 id="title"><a href="{{ canonical }}">{{ title.page }}</a></h1>
6 <p>{% 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 %}</p>
9 {{ article.body|markdown_to_html }}
12 {% if article.keywords is defined and article.keywords %}
14 {% for keyword in article.keywords %}
15 <a href="{{ path('rapsysblog_keyword_view', {'id': keyword.id, 'slug': keyword.slug}) }}">{{ keyword.title }}</a>