{% extends 'base.html.twig' %}
{% block title %}- Le guide des festivals de bridge{% endblock %}
{% block headersection %}
<div class="fixed-top">
{{ include('flashmessages/flashmessages.html.twig') }}
</div>
<section class="section section-xl bg-primary overlay-dark text-white rounded covernorepeat" data-background="{{ asset('assets/img/cards-3662554_1920.jpg') }}">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-md-center">
<!-- Heading -->
<h1 class="display-1">
<span class="font-weight-bolder">B</span>ridge <span class="font-weight-bolder">F</span>estival
</h1>
<!-- Text -->
<p class="lead text-muted mt-4">
Le guide des <span class="font-weight-bold">tournois et festivals</span> de bridge.
</p>
</div>
</div>
{{ render(controller('App\\Controller\\SearchController::homesearch')) }}
</div>
</section>
{%endblock%}
{%block body%}
<main>
{%if bfeditions|length > 0%}
<div class="section section-lg">
<div class="container">
{{ render(controller('App\\Controller\\BFFestivalController::ShowHomeSubscriptions')) }}
<div class="row mb-4">
<div class="col-12">
<h4 class="mb-5">Prochains tournois et festivals</h4>
</div>
<div class="col-12">
</div>
{% for bfedition in bfeditions %}
{{ render(controller('App\\Controller\\BFEditionController::ShowSmallView', {id:bfedition.id})) }}
{%endfor%}
</div>
{{ render(controller('App\\Controller\\BFChallengeEditionController::ShowBFChallengeEditionsHome')) }}
</div>
</div>
{%endif%}
{{ include('about/howitworks.html.twig') }}
</main>
{%endblock%}