13 lines
516 B
Twig
13 lines
516 B
Twig
|
|
{% extends 'base.html.twig' %}
|
||
|
|
|
||
|
|
{% block body %}
|
||
|
|
<div class="max-w-4xl mx-auto py-16 px-4">
|
||
|
|
<h1 class="text-5xl md:text-7xl font-black uppercase tracking-tighter mb-12 leading-none">
|
||
|
|
{% block legal_title %}{% endblock %}
|
||
|
|
</h1>
|
||
|
|
<div class="bg-white border-4 border-gray-900 p-8 md:p-12 shadow-[8px_8px_0px_rgba(0,0,0,1)] space-y-6 font-bold text-gray-700 leading-relaxed not-italic">
|
||
|
|
{% block legal_content %}{% endblock %}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|