templates/home/sponsors.html.twig line 1

Open in your IDE?
  1. {% extends 'baseFront.html.twig' %}
  2. {% block title %}Hello HomeController!{% endblock %}
  3. {% block body %}
  4.     <main>
  5.         <div class="container px-1 ">
  6.             <section id="sponsors">
  7.                 {#<h1>Call for Sponsors </h1>
  8.                 <p>
  9.                     ICPR 2026 is proudly supported by leading academic and institutional partners.  We warmly invite companies and organizations
  10.                     to join us as sponsors and take part in this prestigious event.
  11.                     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.
  12.                 </p><div class="container text-center my-3">
  13.                     <div class="row row-cols-1 row-cols-md-2 justify-content-center g-3">
  14.                         <!-- Guideline -->
  15.                         <div class="col">
  16.                             <a href="https://icpr2026.org/files/sponsorshipGuidlines.pdf">
  17.                                 <picture class="flyer-container">
  18.                                     <source srcset="{{ asset('assetFront/images/sponsorshipGuidlines.webp') }}" type="image/webp">
  19.                                     <img src="{{ asset('assetFront/images/sponsorshipGuidlines.webp') }}" alt="ICPR 2026 Conference sponsorship guideline preview" class="img-fluid flyer" style="max-width: 460px;">
  20.                                 </picture>
  21.                             </a>
  22.                             <p class="mt-2 ">  <a href="https://icpr2026.org/files/sponsorshipGuidlines.pdf">Guideline</a></p>
  23.                         </div>
  24.                         <!-- Forms -->
  25.                         <div class="col">
  26.                             <a href="https://icpr2026.org/files/formsSponsorsICPR2026.pdf">
  27.                                 <picture class="flyer-container">
  28.                                     <source srcset="{{ asset('assetFront/images/formsSponsorsICPR2026.webp') }}" type="image/webp">
  29.                                     <img src="{{ asset('assetFront/images/formsSponsorsICPR2026.webp') }}" alt="ICPR 2026 Conference sponsorship form preview" class="img-fluid flyer" style="max-width: 460px;">
  30.                                 </picture>
  31.                             </a>
  32.                             <p class="mt-2">  <a href="#">Forms</a> </p>
  33.                         </div>
  34.                     </div>
  35.                 </div>
  36.                 <p></p>#}
  37.                 <h1 class="mb-4">Sponsors </h1>
  38.                 <p>
  39.                     This event is already supported by the following  sponsors:
  40.                 </p>
  41.                 <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">
  42.                     {% for sponsor in sponsors %}
  43.                     <div class="col">
  44.                         <a href=""> <img src="{{ sponsor.logo ? asset('uploads/sponsor/' ~ sponsor.logo) : '' }}" alt="{{sponsor.nom}}" class="img-fluid" style="max-height: 200px;"></a>
  45.                     </div>
  46.                     {% endfor %}
  47.                     {#<div class="col">
  48.                         <a href="https://liris.cnrs.fr/"> <img src="{{ asset('assetFront/images/logoLIRIS.png') }}" alt="Sponsor LIRIS " class="img-fluid" style="max-height: 80px;"></a>
  49.                     </div>
  50.                     <div class="col">
  51.                         <a href="https://cnrs.fr/"> <img src="{{ asset('assetFront/images/logoCNRS.png') }}" alt="Sponsor CNRS" class="img-fluid" style="max-height: 80px;"></a>
  52.                     </div>#}
  53.                     <!-- ... ajoute d'autres logos ici ... -->
  54.                 </div>
  55.                {# <h1 class="mb-4">Other Sponsors </h1>
  56.                 <p>
  57.                     We also acknowledge the support of:
  58.                 </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">
  59.                     <div class="col">
  60.                         <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>
  61.                     </div>
  62.                     <p></p>
  63.                 </div>#}</section>
  64.         </div>
  65.     </main>
  66. {% endblock %}