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

{{ title }}

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

{{ keyword.description }}

{% if keyword.articles is defined and keyword.articles %}
{% for article in keyword.articles %} {% endfor %}
{% endif %}
{% endblock %}