{% extends 'baseFront.html.twig' %}{% block title %}Hello HomeController!{% endblock %}{% block body %} <main> <div class="container px-1 "> <section id="sponsors"> {#<h1>Call for Sponsors </h1> <p> ICPR 2026 is proudly supported by leading academic and institutional partners. We warmly invite companies and organizations to join us as sponsors and take part in this prestigious event. Explore our <a href="https://icpr2026.org/files/sponsorshipGuidlines.pdf"> Sponsorship Call</a> to learn about available opportunities, and find the <a href="https://icpr2026.org/files/sponsorshipGuidlines.pdf">form</a> below or contact us at <a href="mailto:sponsors@icpr2026.org">sponsors@icpr2026.org</a> for more information. </p><div class="container text-center my-3"> <div class="row row-cols-1 row-cols-md-2 justify-content-center g-3"> <!-- Guideline --> <div class="col"> <a href="https://icpr2026.org/files/sponsorshipGuidlines.pdf"> <picture class="flyer-container"> <source srcset="{{ asset('assetFront/images/sponsorshipGuidlines.webp') }}" type="image/webp"> <img src="{{ asset('assetFront/images/sponsorshipGuidlines.webp') }}" alt="ICPR 2026 Conference sponsorship guideline preview" class="img-fluid flyer" style="max-width: 460px;"> </picture> </a> <p class="mt-2 "> <a href="https://icpr2026.org/files/sponsorshipGuidlines.pdf">Guideline</a></p> </div> <!-- Forms --> <div class="col"> <a href="https://icpr2026.org/files/formsSponsorsICPR2026.pdf"> <picture class="flyer-container"> <source srcset="{{ asset('assetFront/images/formsSponsorsICPR2026.webp') }}" type="image/webp"> <img src="{{ asset('assetFront/images/formsSponsorsICPR2026.webp') }}" alt="ICPR 2026 Conference sponsorship form preview" class="img-fluid flyer" style="max-width: 460px;"> </picture> </a> <p class="mt-2"> <a href="#">Forms</a> </p> </div> </div> </div> <p></p>#} <h1 class="mb-4">Sponsors </h1> <p> This event is already supported by the following sponsors: </p> <div class="sponsors-grid"> {% for sponsor in sponsors %} <div class="sponsor-item"> <a href="{{ sponsor.lien }}"> <img src="{{ sponsor.logo ? asset('uploads/sponsor/' ~ sponsor.logo) : '' }}" alt="{{ sponsor.nom }}" class="img-fluid sponsor-logo"> </a> </div> {% endfor %}</div> {#<div class="col"> <a href="https://liris.cnrs.fr/"> <img src="{{ asset('assetFront/images/logoLIRIS.png') }}" alt="Sponsor LIRIS " class="img-fluid" style="max-height: 80px;"></a> </div> <div class="col"> <a href="https://cnrs.fr/"> <img src="{{ asset('assetFront/images/logoCNRS.png') }}" alt="Sponsor CNRS" class="img-fluid" style="max-height: 80px;"></a> </div>#} <!-- ... ajoute d'autres logos ici ... --> <style>.sponsors-grid { display: grid; gap: 1rem; align-items: center;}/* 📱 Mobile : 1 sponsor par ligne, centré */@media (max-width: 575.98px) { .sponsors-grid { grid-template-columns: 1fr; justify-items: center; /* centre horizontalement */ }}/* 🖥️ Desktop : 7 sponsors sur la même ligne */@media (min-width: 992px) { .sponsors-grid { grid-template-columns: repeat(7, 1fr); justify-items: center; }}/* Logo */.sponsor-logo { max-height: 200px; object-fit: contain; width : 200px;; /* conserve les proportions */}</style> {# <h1 class="mb-4">Other Sponsors </h1> <p> We also acknowledge the support of: </p><div class="row row-cols-2 row-cols-sm-3 row-cols-md-4 row-cols-lg-6 g-3 justify-content-center align-items-center"> <div class="col"> <a href="https://www.elsevier.com/"> <img src="{{ asset('assetFront/images/elsevierLogo.png') }}" alt="logo sponsor elsevier " class="img-fluid" style="max-height: 150px;"></a> </div> <p></p> </div>#}</section> </div> </main>{% endblock %}