templates/contact/index.html.twig line 1

Open in your IDE?
  1. {% extends 'layout/base.html.twig' %}
  2. {% block title %}Support{% endblock %}
  3. {% block body %}
  4. <div class="row">
  5. <div class="col-md-12">
  6. <h1 class="section-title">Support</h1>
  7. <div class="row justify-content-center mt-3">
  8. <div class="col-12 col-lg-9">
  9. {% for flashError in app.flashes('contact-form-success') %}
  10. <div class="alert alert-success text-center" role="alert"><b>{{ flashError }}</b></div>
  11. {% endfor %}
  12. <div class="alert alert-info">Send us a message and we’ll respond as soon as possible.</div>
  13. {{ form(form) }}
  14. </div>
  15. </div>
  16. </div>
  17. </div>
  18. {% endblock %}