templates/front/contact/contact.html.twig line 1

Open in your IDE?
  1. {% extends 'base_front.html.twig' %}
  2. {% block body %}
  3.     <section id="contact" class="bg-light-grey">
  4.         <div class="text-center col-md-12">
  5.             <h2 class="red">Contact</h2>
  6.         </div>
  7.         <div class="col-md-8 col-lg-6 text-center pt-4 m-auto">
  8.             {{ include('front/contact/_form.html.twig') }}
  9.         </div>
  10.     </section>
  11. {% endblock %}