templates/pages/groupe-travail.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block style %}
  3.     {{ parent() }}
  4.     {% include "css/shepherd.html.twig" %}
  5.     {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'previews_css'} %}
  6.     {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'preview_thematique_css'} %}
  7.     {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'filter_css'} %}
  8.     {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'gt_css'} %}
  9.     {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'loader_css'} %}
  10.     {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'pagination_css'} %}
  11.     {% for block in content.main_content %}
  12.         {% if block.type == 'freetext' %}
  13.             {% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'freetext_css'} %}
  14.         {% endif %}
  15.     {% endfor %}
  16. {% endblock %}
  17. {% block content %}
  18.     <div class="main-container w100 plr-1em">
  19.         <div class="{% if content.header_img is defined and content.header_img is not empty %}main-title{% else %}small-main-title{% endif %} prelative gt-intro team-project-head dflex jcc aic fdc">
  20.             {% include "pages/headers/pqna-page-header.html.twig" %}
  21.             {% if content.header_img is defined and content.header_img is not empty %}
  22.                 <div class="background-color-turquoize"></div>
  23.             {% endif %}
  24.         </div>
  25.         <div class="content">
  26.             <div class="blocks w100 team-project-list">
  27.                 {% for block in content.main_content %}
  28.                     {% if block.type == 'articles_type' %}
  29.                         {% include "blocks/articles.html.twig" with {filter: "groupe_travail"} %}
  30.                     {% elseif block.type == 'freetext' %}
  31.                         {% include "articles-blocks/freetext.html.twig" with {data: block} %}
  32.                     {% endif %}
  33.                 {% endfor %}
  34.             </div>
  35.         </div>
  36.     </div>
  37. {% endblock %}
  38. {% block javascripts %}
  39.     {{ parent() }}
  40.     {% if app.user %}
  41.         {{ encore_entry_script_tags('onboard_tour') }}
  42.     {% endif %}
  43.     {{ encore_entry_script_tags('articles_api') }}
  44. {% endblock %}