src/StartPlatz/Bundle/RheinlandPitchBundle/Resources/views/Apply/_show.open.applications.html.twig line 1

Open in your IDE?
  1. <section class="ftco-section ftco-subscribe img" style="background-image: url({{ bgImage }});">
  2.     <div class="overlay"></div>
  3.     <div class="container">
  4.         <div class="row justify-content-center pb-5">
  5.             <div class="col-md-7 heading-section heading-section-white text-center ftco-animate">
  6.                 <h2 class="mb-4">Welcome to our application page</h2>
  7.                 <div class="row d-flex  mt-4">
  8.                     <div class="col-md-12">
  9.                         <div class="bg-light p-4 p-md-5 text-left text-muted">
  10.                             {% if batches %}
  11.                             Currenty the following applications are open:
  12.                             <ul>
  13.                                 {% for batch in batches %}
  14.                                     <li><a href="{{ path('apply_program_home', {'programSlug':batch.program.slug, 'batchSlug':batch.slug}) }}">{{ batch.program.name }} {{ batch.name }}</a> </li>
  15.                                 {% endfor %}
  16.                             </ul>
  17.                             {% else %}
  18.                                 Sorry, currently no program is open
  19.                             {% endif %}
  20.                         </div>
  21.                     </div>
  22.                 </div>
  23.             </div>
  24.         </div>
  25.     </div>
  26. </section>