templates/page/makeDonation.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ page.title|replace({ '<br>':'' }) }}{% endblock %}
  3. {% block body %}
  4.     <h1>{{ page.title|raw }}</h1>
  5.     {% if is_granted('ROLE_EDITOR') %}
  6.         {% set url = ea_url()
  7.             .setController('App\\Controller\\Admin\\PageCrudController')
  8.             .setAction('edit')
  9.             .setEntityId(page.id) %}
  10.         <p><a class="adm-link" href="{{ url }}" target="_blank">administrer la page</a></p>
  11.     {% endif %}
  12.     {# <div class="date">
  13.         {{page.createdAt|date("d/m/Y")}}
  14.     </div> #}
  15.     {% if page.medias is not empty %}
  16.         <div class="article medias">
  17.             {% include 'media/postMedias.html.twig' with {'post': article } %}
  18.         </div>
  19.     {% endif %}
  20.     
  21.     <section class="contenu mgb">
  22.         {{ page.content|raw }}
  23.     </section>
  24.     
  25.     <section class="formulaire">
  26.         {{form(form)}}
  27.     </section>
  28.     
  29. {% endblock %}