templates/pages/listing_banner.html.twig line 1

Open in your IDE?
  1. <section class="pt-0">
  2.     <div class="container">
  3.         <!-- Background image -->
  4.         <div class="rounded-3 p-3 p-sm-5" style="background-image: url({{ asset('build/images/bg/05.jpg') }}); background-position: center center; background-repeat: no-repeat; background-size: cover;">
  5.             <!-- Banner title -->
  6.             <div class="row my-2 my-xl-5">
  7.                 <div class="col-md-8 mx-auto">
  8.                    {# <h1 class="text-center text-white">150 Hotels in New York</h1>#}
  9.                 </div>
  10.             </div>
  11.             {% include 'pages/search_form.html.twig' %}
  12.         </div>
  13.     </div>
  14. </section>