{% extends "template.html.twig" %}
{% set desc = "" %}
{% set menu = 'accounts' %}
{% block titlebox %}
<div class="fill relative flex col middle h1">
{{ static.BannerTitle|raw }}
</div>
{% endblock %}
{% block content %}
<div class='{{desktop("gpadding vt-80-in")}} {{mobile("hz-15-in")}}'>
<div class='{{desktop("flex row space top")}}'>
<div id='article' class='w100 {{desktop("")}} {{mobile("vt-20-in")}}'>
<div class="{{desktop("h3 bottom-40")}} {{mobile("bottom-20 h3 success bold top-5")}}">
{{ static.CampaignBlockTitle|raw }}
</div>
{% for o in campaigns %}
{{ include('RecruitmentCampaign/_campaign_card.html.twig', {campaign: o}) }}
{% endfor %}
</div>
{% if not role.connected %}
<aside class="{{desktop('third left-80 vt-20-in')}} {{mobile('bottom-40-in')}}">
{{ include('security/_provider_login_form.html.twig') }}
</aside>
{% endif %}
</div>
</div>
{% endblock %}
{% block css %}
<style>
:root{
--background: white;
}
</style>
{% endblock %}