12345678910111213 |
- {% extends 'bulma.html.twig' %}
- {% block title %}Charte animation{% endblock %}
- {% block content %}
- {{ component('Alert', {title: '', message: 'Cette page est en cours de rédaction.', type: 'info'}) }}
- <div class="content">
- {{ codeContent|markdown_to_html }}
- </div>
- {% endblock %}
|