templates/blocks/sort-articles.html.twig line 1

Open in your IDE?
  1. {% if type == "articles" or type == "analyses" or type == "guides_outils" %}
  2.     {% include "blocks/previews/preview-article-logic.html.twig" with {article: article, i:i} %}
  3. {% elseif type == "agenda" %}
  4.     {% include "blocks/previews/preview-agenda-logic.html.twig" with {article: article, i:i} %}
  5. {% elseif type == "aapami" %}
  6.     {% include "blocks/previews/preview-aapami-logic.html.twig" with {article: article, i:i} %}
  7. {% elseif type == "offres" %}
  8.     {% include "blocks/previews/preview-offres-logic.html.twig" with {article: article, i:i} %}
  9. {% elseif type == "newsletters" %}
  10.     {% include "blocks/previews/preview-newsletters-logic.html.twig" with {article: article, i:i} %}
  11. {% elseif type == "fiches_territoires" or type == "experiences" %}
  12.     {% include "blocks/previews/preview-territoire-experience-logic.html.twig" with {article: article, i:i} %}
  13. {% endif %}