X-Git-Url: https://git.rapsys.eu/blogbundle/blobdiff_plain/a4327fe8283484cae72cce64c682801da33cb6c0..e9d192e6b658afb9f7140126cf9cae0adc015cfb:/Resources/views/keyword/view.html.twig?ds=sidebyside diff --git a/Resources/views/keyword/view.html.twig b/Resources/views/keyword/view.html.twig new file mode 100644 index 0000000..97c6c94 --- /dev/null +++ b/Resources/views/keyword/view.html.twig @@ -0,0 +1,37 @@ +{% 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 %}