mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
20 lines
460 B
Twig
20 lines
460 B
Twig
{# variable "cgus" a string containing the cgus #}
|
|
|
|
{% extends "login/layout/content-only-layout.html.twig" %}
|
|
|
|
{% block title %}
|
|
{{ "Terms of use" | trans }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row-fluid">
|
|
<div class="span12">
|
|
<div class="cgu-content">
|
|
{% block cgu_content %}
|
|
{{ cgus|raw }}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|