templates/home/importantDates.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="Dates">
  7. <h1> Call for papers</h1>
  8. <div class="affiche-wrapper">
  9.     <img src="{{ asset('assetFront/img/Phares (400 x 533 px).png') }}" class="affiche" alt="Affiche">
  10. </div></br></br></br><style>
  11. .affiche-wrapper {
  12.     display: flex;
  13.     justify-content: center;
  14. }
  15. .affiche {
  16.     width: 100%;
  17.     max-width: 675px; /* limite sur grands écrans */
  18.     height: auto;      /* garde les proportions */
  19. }</style>
  20.                 <h1> Important Dates</h1>
  21.                
  22.                 <ul>
  23.                     <li>Abstract submission: {{setting.abstractsubmission}}</li>
  24.                     <li>Paper submission : <b>{{setting.papersubmission}}</b></li>
  25.                     
  26.                     <li>Authors Notification : {{setting.authorsnotification}}</li>
  27.                     
  28.                 </ul>
  29.                 
  30.             </section>
  31.         </div>
  32.     </main>
  33. {% endblock %}