templates/contact/new.html.twig line 1

Open in your IDE?
  1. {% extends 'front/base.html.twig' %}
  2. {% block title %}Hello MainController!{% endblock %}
  3. {% block body %}
  4. {% include 'contact/overlay.html.twig' %}
  5.     <!-- SHAPE -->
  6.     <div class="position-relative">
  7.         <div class="shape shape-bottom shape-fluid-x text-light">
  8.             <svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 48h2880V0h-720C1442.5 52 720 0 720 0H0v48z" fill="currentColor"/></svg>      </div>
  9.     </div>
  10.     {{ include('contact/info.html.twig') }}
  11. <section class="pt-8 pt-md-11 pb-8 pb-md-7 ">
  12.     <div class="container">
  13.         <div class="row justify-content-center">
  14.             <div class="col-12 col-md-10 col-lg-8 text-center">
  15.                 <!-- Heading -->
  16.                 <h2 class="fw-bold">
  17.                     Let us hear from you directly!
  18.                 </h2>
  19.                 <!-- Text -->
  20.                 <p class="fs-lg text-muted mb-7 mb-md-9">
  21.                     We always want to hear from you! Let us know how we can best help you and we'll do our very best.
  22.                 </p>
  23.             </div>
  24.         </div> <!-- / .row -->
  25.         <div class="row justify-content-center shadow p-3">
  26.             {{ include('contact/_form.html.twig') }}
  27.         </div>
  28.     </div>
  29. </section>
  30.     <div class="position-relative">
  31.         <div class="shape shape-bottom shape-fluid-x text-gray-200">
  32.             <svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 48h2880V0h-720C1442.5 52 720 0 720 0H0v48z" fill="currentColor"/></svg>      </div>
  33.     </div>
  34. {% endblock %}