templates/contribute/new_contribution.html.twig line 1

Open in your IDE?
  1. {% extends 'layout.html.twig' %}
  2. {% block layout %}
  3.     <div class="row" style="display:block; padding-left:40px">
  4.         <h2 style="text-align: center">
  5.             <strong>
  6.                 Contribution
  7.             </strong>
  8.         </h2>
  9.         <br />
  10.         <p>
  11.             <i>
  12.                 Vous voulez participer au site par une info, un tuto ? contribuez ici !
  13.             </i>
  14.         </p>
  15.     </div>
  16.     <div class="row" style="display:block; padding-left:40px">
  17.         {% for message in app.flashes('success') %}
  18.             <div class="alert alert-success" style="width:50%">
  19.                 {{ message }}
  20.             </div>
  21.         {% endfor %}
  22.         <div class="col-10 col-lg-8">
  23.             {{ form(form) }}
  24.         </div>
  25.     </div>
  26. {% endblock %}
  27. {% block stylesheets %}
  28.     {{ parent() }}
  29.     <style>
  30.         @media screen and (max-width: 1000px) {
  31.             #contribution_name, #contribution_type {
  32.                 font-size:50px
  33.             }
  34.         }
  35.     </style>
  36. {% endblock %}