<section class="ftco-section ftco-subscribe img" style="background-image: url({{ bgImage }});">
<div class="overlay"></div>
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-md-7 heading-section heading-section-white text-center ftco-animate">
<h2 class="mb-4">Welcome to our application page</h2>
<div class="row d-flex mt-4">
<div class="col-md-12">
<div class="bg-light p-4 p-md-5 text-left text-muted">
{% if batches %}
Currenty the following applications are open:
<ul>
{% for batch in batches %}
<li><a href="{{ path('apply_program_home', {'programSlug':batch.program.slug, 'batchSlug':batch.slug}) }}">{{ batch.program.name }} {{ batch.name }}</a> </li>
{% endfor %}
</ul>
{% else %}
Sorry, currently no program is open
{% endif %}
</div>
</div>
</div>
</div>
</div>
</div>
</section>