templates/articles/styles/base-css-logic.html.twig line 1

Open in your IDE?
  1. {% include "css/article-critical-css.html.twig" %}
  2. {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'articles_css'} %}
  3. {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'previews_css'} %}
  4. {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'sns_icons_css'} %}
  5. {% if content.main_content|length > 0 %}
  6.     {% for content in content.main_content %}
  7.         {% if content.type == "see_more" or content.type == "linked_with" %}
  8.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'previews_css'} %}
  9.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'preview_thematique_css'} %}
  10.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'splide_css'} %}
  11.         {% endif %}
  12.         {% if content.type == "sub_content" %}
  13.             {% if content.content|length > 0 %}
  14.                 {% for child_content in content.content %}
  15.                     {% if child_content.type == "media" %}
  16.                         {% if child_content.select == "youtube_link" %}
  17.                             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'youtube_css'} %}
  18.                         {% endif %}
  19.                     {% endif %}
  20.                     {% if child_content.type == "photo_report" %}
  21.                         {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'splide_css'} %}
  22.                     {% endif %}
  23.                     {% if child_content.type == "citation" %}
  24.                         {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'citation_css'} %}
  25.                     {% endif %}
  26.                     {% if child_content.type == "freetext" %}
  27.                         {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'freetext_css'} %}
  28.                     {% endif %}
  29.                 {% endfor %}
  30.             {% endif %}
  31.         {% endif %}
  32.     {% endfor %}
  33. {% endif %}