{% extends "front/_common/_base.html.twig" %}
{% block cssadicional %}{% endblock %}
{% block classbody %}{% endblock %}
{% block content %}
<section class="b1legales">
<div class="b1legales_content ww_center">
<h1 class="b1legales_title">{{ legal.title }}</h1>
</div>
</section>
<section class="b2legales">
<div class="b2legales_content ww_center">
<div class="b2legales_head">
{% if legal_active == 'data_protection_policies' %}
<a class="b2legales_btn active">Políticas de Protección de Datos</a>
<a href="{{ path('cookies_policy') }}" class="b2legales_btn">Políticas de Cookies</a>
<a href="{{ path('terms_and_conditions') }}" class="b2legales_btn">Términos y Condiciones</a>
{% endif %}
{% if legal_active == 'cookies_policy' %}
<a href="{{ path('data_protection_policies') }}" class="b2legales_btn">Políticas de Protección de Datos</a>
<a class="b2legales_btn active">Políticas de Cookies</a>
<a href="{{ path('terms_and_conditions') }}" class="b2legales_btn">Términos y Condiciones</a>
{% endif %}
{% if legal_active == 'terms_and_conditions' %}
<a href="{{ path('data_protection_policies') }}" class="b2legales_btn">Políticas de Protección de Datos</a>
<a href="{{ path('cookies_policy') }}" class="b2legales_btn">Políticas de Cookies</a>
<a class="b2legales_btn active">Términos y Condiciones</a>
{% endif %}
</div>
<div class="b2legales_info">
<h2>{{ sd.title }}</h2>
{{ sd.text|raw }}
</div>
</div>
</section>
{% endblock %}
{% block jsfinal %}{% endblock %}