X-Git-Url: https://git.rapsys.eu/blogbundle/blobdiff_plain/d0154ce723171034c1c33a23238f1ab08cefe2bf..73d3287ce9876d651f4e02eae59ed196fab75192:/Resources/views/index.html.twig?ds=sidebyside diff --git a/Resources/views/index.html.twig b/Resources/views/index.html.twig deleted file mode 100644 index 0036a4e..0000000 --- a/Resources/views/index.html.twig +++ /dev/null @@ -1,28 +0,0 @@ -{% extends 'RapsysBlogBundle::body.html.twig' %} -{% block content %} -
-

{% trans %}Articles list{% endtrans %}

- {% for article in articles %} -
-
-

{{article.title}}

-

- {% trans with {'%date%': article.created|localizeddate('full', 'short')} %}Published the %date%{% endtrans %}{% if article.created != article.updated %}{% trans with {'%date%': article.updated|localizeddate('short', 'short')} %}, edited the %date%{% endtrans %}{% endif %} - {% if article.keywords %} - - {% transchoice article.keywords|length %}{1} Keyword:|]1,Inf[ Keywords:{% endtranschoice %} - {% for slug, keyword in article.keywords %} - {{ keyword }} - {% endfor %} - - {% endif %} -

-
-

{{article.description}}

- -
- {% endfor %} -
-{% endblock %}