1 {% extends '@RapsysBlog/_base.html.twig' %}
 
   2 {% block title %}{% endblock %}
 
   6                         <h1 id="title"><a href="{{ head.canonical }}">{{ title }}</a></h1>
 
   7                         <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>
 
  10                         {{ article.body|markdown_to_html }}
 
  13                         {% if article.keywords is defined and article.keywords %}
 
  15                                         {% for keyword in article.keywords %}
 
  16                                                 <a href="{{ path('rapsys_blog_keyword_view', {'id': keyword.id, 'slug': keyword.slug}) }}">{{ keyword.title }}</a>