templates/apropos/apropos.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block stylesheets %}
  3.     <link rel="stylesheet" href="{{ asset('assets/css/accueil.min.css') }}" />
  4. {% endblock %}
  5. {% block title %}
  6.     {% for content in contents %}
  7.         {{ content.meta_title|raw }}
  8.     {% endfor %}
  9. {% endblock %}
  10. {% block description %}
  11.     {% for content in contents %}
  12.         {{ content.meta_description|raw }}
  13.     {% endfor %}
  14. {% endblock %}
  15. {% block content %}
  16.     <div class="{{ definition is defined ? "definition" : "" }}">
  17.         {% for content in contents %}
  18.             {{ content.content|raw }}
  19.         {% endfor %}
  20.     </div>
  21. {% endblock %}