templates/home/calls.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="maincall">
  7.                 <h1>Main Call</h1>
  8.                 <p> The International Conference on Pattern Recognition (ICPR) is the leading event of the International
  9.                     Association for Pattern Recognition, recognized as a top conference in the field. It encompasses a wide range of
  10.                     topics where Pattern Recognition methods are applied in fields including Computer Vision, Machine Learning,
  11.                     Image Processing, Speech and Natural Language Processing, and Sensor Pattern Processing. The 28th ICPR, to be
  12.                     held in 2026, offers an excellent platform for students, academics, and industry researchers to foster new ideas
  13.                     and collaborations.</p>
  14.                 <h2> Main topics of interest</h2>
  15.                 <ul>
  16.                     <li>Artificial Intelligence, Pattern Recognition and Machine Learning</li>
  17.                     <li>Computer and Robot Vision</li>
  18.                     <li>Image, Speech, Signal and Video Processing</li>
  19.                     <li>Biometrics and Human Computer Interaction</li>
  20.                     <li>Document Analysis and Recognition</li>
  21.                     <li>Biomedical Imaging and Bioinformatics</li>
  22.                 </ul>
  23.                 <h2>Flyers of Call For Papers </h2>
  24.                 The main flyer of the call for papers is available here:
  25.                 <div class="text-center">
  26.                     <a href="https://icpr2026.org/files/flyerCallFP.pdf">
  27.                         <picture class="flyer-container">
  28.                             <!-- Version WebP -->
  29.                             <source srcset="{{ asset('assetFront/images/flyer.webp') }}" type="image/webp">
  30.                             <!-- Fallback PNG -->
  31.                             <img src="{{ asset('assetFront/images/flyer.webp') }}" alt="ICPR 2026 Conference flyer Call for papers" class="img-fluid flyer">
  32.                         </picture>
  33.                     </a>
  34.                 </div>
  35.             </section>
  36.         </div>
  37.     </main>
  38. {% endblock %}