templates/Default/simple/contact.html.twig line 1

Open in your IDE?
  1. {% extends "Default/layout.html.twig" %}
  2. {% set page_title = 'contactpage.metatitle' | trans %}
  3. {% block page_content %}
  4.     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
  5.     {% for flash_message in app.session.flashbag.get('notice') %}
  6.         <section class="panel panel-success">
  7.             <div class="panel-heading">Info</div>
  8.             <div class="panel-body">
  9.                 <p>{{ flash_message | trans}}</p>
  10.             </div>
  11.         </section>
  12.     {% endfor %}
  13.     <section class="panel panel-default">
  14.         <div class="panel-heading"><h1 class="unstyled">{{'contactpage.title' | trans}}</h1></div>
  15.         <div class="panel-body">
  16.             <p>
  17.                 {{'contactpage.content' | trans | raw}}
  18.                 {% if app.request.locale == 'fr'%}
  19.                     <a href="{{ path('page_advert_new') }}">Vous pouvez toutefois revendre votre billet de bus en postant une offre ici.</a>
  20.                 {% endif %}
  21.             </p>
  22.             <br />
  23.             {% form_theme form 'bootstrap_3_horizontal_layout.html.twig' %}
  24.             {{ form_start(form) }}
  25.             {{ form_widget(form) }}
  26.             {{ form_end(form) }}
  27.         </div>
  28.     </section>
  29. {%endblock %}