{% extends "front/base.html.twig" %}
{% block title %}{{ "legal_notices.title" | trans }}
{% endblock %}
{% block body %}
<div class="overflow-hidden fullheight">
<section class="mt-0 first-section">
<div class="container">
{% if info.title %}
<h2 class="section-title-underline">{{ info.title }}</h2>
{% else %}
<h2 class="section-title-underline">{{ ("footer." ~ title) | trans }}</h2>
{% endif %}
{% if info is empty %}
<h3>{{ "legal_notice.pending" | trans }}</h3>
{% else %}
{{ info.content | raw }}
{% endif %}
</div>
</section>
</div>
{% endblock %}