templates/pages/pqna.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block style %}
  3.     {{ parent() }}
  4.     {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'previews_css'} %}
  5.     {% for block in content.main_content %}
  6.         {% if block.type == 'articles_type' %}
  7.             {% include "css/previews-critical-css.html.twig" %}
  8.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'loader_css'} %}
  9.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'filter_css'} %}
  10.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'preview_thematique_css'} %}
  11.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'pagination_css'} %}
  12.             {% if (block.filter is defined and block.filter == "fiches_territoires") or 
  13.                 (block.filter is defined and block.filter == "experiences") %}
  14.                 {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'map_css'} %}
  15.                 {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'territory_css'} %}
  16.             {% endif %}
  17.             {% if block.filter is defined and block.filter == "fiches_territoires" %}
  18.                 {% include "css/territoire-critical-css.html.twig" %}
  19.             {% endif %}
  20.             {% if block.filter is defined and block.filter == "experiences" %}
  21.                 {% include "css/experience-critical-css.html.twig" %}
  22.             {% endif %}
  23.             {% if block.filter == 'articles' or
  24.                 block.filter == "analyses" or
  25.                 block.filter == "guides_outils" or
  26.                 block.filter == "agenda" or
  27.                 block.filter == "aapami" or
  28.                 block.filter == "offre" %}
  29.                 {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'flatpickr_css'} %}
  30.             {% endif %}
  31.         {% endif %}
  32.         {% if block.type == 'annuaire' %}
  33.             {% include "css/annuaire-critical-css.html.twig" %}
  34.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'filter_css'} %}
  35.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'pagination_css'} %}
  36.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'userlist_css'} %}
  37.         {% endif %}
  38.         {% if block.type == 'contact_modalite' %}
  39.                 {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'map_css'} %}
  40.         {% endif %}
  41.         {% if block.type == 'block_team' %}
  42.             {% include "css/equipe-critical-css.html.twig" %}
  43.         {% endif %}
  44.         {% if block.type == 'block_team' or
  45.             block.type == "frame" or
  46.             block.type == "text_pic" or
  47.             block.type == "theme_pic" or
  48.             block.type == "contact_modalite" %}
  49.                 {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'frame_css'} %}
  50.         {% endif %}
  51.         {% if block.type == 'h2_anchor' %}
  52.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'anchors_css'} %}
  53.         {% endif %}
  54.         {% if block.type == "preview_content" %}
  55.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'preview_thematique_css'} %}
  56.             {% if block.slider_mode %}
  57.                 {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'splide_css'} %}
  58.             {% endif %}
  59.         {% endif %}
  60.         {% if block.type == "preview_thematique" %}
  61.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'preview_thematique_css'} %}
  62.         {% endif %}
  63.         {% if block.type == "preview_simple" %}
  64.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'preview_thematique_css'} %}
  65.         {% endif %}
  66.         {% if block.type == "see_more" %}
  67.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'splide_css'} %}
  68.         {% endif %}
  69.         {% if block.type == "form" %}
  70.             {% include "css/form-critical-css.html.twig" %}
  71.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'form_css'} %}
  72.         {% endif %}
  73.         {% if block.type == "thematiques_page" %}
  74.             {% include "css/page-thematique-critical-css.html.twig" %}
  75.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'preview_thematique_css'} %}
  76.         {% endif %}
  77.         {% if block.type == "freetext" %}
  78.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'freetext_css'} %}
  79.         {% endif %}
  80.         {% if block.type == "media" %}
  81.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'media_css'} %}
  82.             {% if block.youtube_link %}
  83.                 {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'youtube_css'} %}
  84.             {% endif %}
  85.         {% endif %}
  86.     {% endfor %}
  87. {% endblock %}
  88. {% block content %}
  89.     <div class="{% if content.header_img is defined and content.header_img is not empty %}main-title{% else %}small-main-title{% endif %} dflex fdc aic jcc prelative">
  90.         {% include "pages/headers/pqna-page-header.html.twig" %}
  91.         {% if content.header_img is defined and content.header_img is not empty %}
  92.             <div class="background-color-blue"></div>
  93.         {% endif %}
  94.     </div>
  95.     <div class="main-container w100 plr-1em">
  96.         <div class="content">
  97.             <div class="blocks w100">
  98.                 {% include "blocks/error.html.twig" %}
  99.                 {% for block in content.main_content %}
  100.                     {% if block.type == 'articles_type' %}
  101.                         {% include "blocks/articles.html.twig" %}
  102.                     {% elseif block.type == 'freetext' %}
  103.                         {% include "articles-blocks/freetext.html.twig" with {data: block} %}
  104.                     {% elseif block.type == 'form' %}
  105.                         <div class="form-container tac dflex jcc fwrap">
  106.                             {% include "blocks/form.html.twig" %}
  107.                         </div>
  108.                     {% elseif block.type == 'media' %}
  109.                         {% include "articles-blocks/media.html.twig" with {data: block} %}
  110.                     {% elseif block.type == "map" %}
  111.                         {% include "blocks/map.html.twig" %}
  112.                     {% elseif block.type == "preview_content" or block.type == "preview_thematique" %}
  113.                         {% include "blocks/preview-content.html.twig" %}
  114.                     {% elseif block.type == "preview_simple" %}
  115.                         {% include "blocks/preview-content-simple.html.twig" %}
  116.                     {% elseif block.type == "h2_anchor" %}
  117.                         {% include "blocks/h2-anchor.html.twig" %}
  118.                     {% elseif block.type == "frame" %}
  119.                         {% include "blocks/block-picbkg-frame.html.twig" %}
  120.                     {% elseif block.type == "text_pic" %}
  121.                         {% include "blocks/text-pic.html.twig" %}
  122.                     {% elseif block.type == "theme_pic" %}
  123.                         {% include "blocks/block-pic-quad-theme.html.twig" %}
  124.                     {% elseif block.type == "block_team" %}
  125.                         {% include "blocks/teams-display.html.twig" %}
  126.                     {% elseif block.type == "contact_modalite" %}
  127.                         {% include "blocks/modalite.html.twig" %}
  128.                     {% elseif block.type == "thematiques_page" %}
  129.                         {% include "blocks/thematiques-page.html.twig" %}
  130.                     {% elseif block.type == "see_more" %}
  131.                         {% include "articles-blocks/see-more.html.twig" with {data: block} %}
  132.                     {% elseif block.type == "annuaire" %}
  133.                         {% include "blocks/annuaire.html.twig" with {data: block} %}
  134.                     {% endif %}
  135.                 {% endfor %}
  136.             </div>
  137.         </div>
  138.     </div>
  139. {% endblock %}
  140. {% block javascripts %}
  141.     {% for block in content.main_content %}
  142.         {% if block.type == 'articles_type' %}
  143.             {{ encore_entry_script_tags('articles_api') }}
  144.             {% if (block.filter is defined and block.filter == "fiches_territoires")
  145.             or (block.filter is defined and block.filter == "experiences") %}
  146.                 {{ encore_entry_script_tags('toggle_map') }}
  147.             {% endif %}
  148.         {% elseif block.type == "map" or block.type == "contact_modalite" %}
  149.             {{ encore_entry_script_tags('map') }}
  150.         {% elseif block.type == "h2_anchor" %}
  151.             {{ encore_entry_script_tags('h2_anchor') }}
  152.         {% elseif block.type == "see_more" %}
  153.             {{ encore_entry_script_tags('splide') }}
  154.         {% elseif block.type == "preview_content" %}
  155.             {% if block.slider_mode %}
  156.                 {{ encore_entry_script_tags('splide') }}
  157.             {% endif %}
  158.         {% elseif block.type == "annuaire" %}
  159.             {{ encore_entry_script_tags('annuaire_filter') }}
  160.         {% elseif block.type == "media" %}
  161.             {% if block.select == "youtube_link" %}
  162.                 {{ encore_entry_script_tags('lite-youtube') }}
  163.                 {{ encore_entry_script_tags('youtube_defer') }}
  164.             {% endif %}
  165.         {% endif %}
  166.     {% endfor %}
  167.     {{ parent() }}
  168. {% endblock %}