{% extends "base.html.twig" %}
{% block style %}
{{ parent() }}
{% include "css/shepherd.html.twig" %}
{% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'previews_css'} %}
{% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'preview_thematique_css'} %}
{% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'filter_css'} %}
{% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'gt_css'} %}
{% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'loader_css'} %}
{% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'pagination_css'} %}
{% for block in content.main_content %}
{% if block.type == 'freetext' %}
{% include "pages/headers/encore-entry-css-files.html.twig" with {file: 'freetext_css'} %}
{% endif %}
{% endfor %}
{% endblock %}
{% block content %}
<div class="main-container w100 plr-1em">
<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">
{% include "pages/headers/pqna-page-header.html.twig" %}
{% if content.header_img is defined and content.header_img is not empty %}
<div class="background-color-turquoize"></div>
{% endif %}
</div>
<div class="content">
<div class="blocks w100 team-project-list">
{% for block in content.main_content %}
{% if block.type == 'articles_type' %}
{% include "blocks/articles.html.twig" with {filter: "groupe_travail"} %}
{% elseif block.type == 'freetext' %}
{% include "articles-blocks/freetext.html.twig" with {data: block} %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% endblock %}
{% block javascripts %}
{{ parent() }}
{% if app.user %}
{{ encore_entry_script_tags('onboard_tour') }}
{% endif %}
{{ encore_entry_script_tags('articles_api') }}
{% endblock %}