X-Git-Url: https://git.rapsys.eu/blogbundle/blobdiff_plain/0189d94eedbc0896039113bd087f1542605026d6..73d3287ce9876d651f4e02eae59ed196fab75192:/templates/keyword/view.html.twig diff --git a/templates/keyword/view.html.twig b/templates/keyword/view.html.twig new file mode 100644 index 0000000..56a9a28 --- /dev/null +++ b/templates/keyword/view.html.twig @@ -0,0 +1,36 @@ +{% extends '@RapsysBlog/_base.html.twig' %} +{% block content %} +
+
+

{{ title.page }}

+

{% 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 %}