ProBundle/Resources/views/probundle/prestation/index.html.twig line 1

Open in your IDE?
  1. {% extends '@probundle/probundle/base.html.twig' %}
  2. {%  block stylesheets  %}
  3.     {{ parent() }}
  4.     {{ encore_entry_link_tags('seance-page', null, 'studio_build') }}
  5.     {{ encore_entry_link_tags('masonryCss', null, 'studio_build') }}
  6. {% endblock %}
  7. {% block content %}
  8.     <section class="mt-75">
  9.         <div class="container-fluid text-black">
  10.             <div class="row">
  11.                 <div class="col-md-4 thumbnail p-0">
  12.                     <img class="img-illustration" src="{{asset('pro_bundle/images/' ~ prestation.image , 'pro_build') }}" alt="logo-ub-photographies">
  13.                 </div>
  14.                 <div class="col-md-8 pt-50 p-50 ">
  15.                     <h1 class="mb-1 pb-0 text-black">
  16.                         {{ prestation.categName }}</h2>
  17.                     <p class="fst-italic text-black">{{ prestation.subtitle}}<br></p>
  18.                     <div class="row text-center">
  19.                         <div class="col-md-12 pb-1 text-start text-black text-presentation">
  20.                             <hr>
  21.                             {{ prestation.presentation|raw }}<br>
  22.                             <hr>
  23.                         </div>
  24.                         <a href="#contact "class="btn btn-primary w-50 m-auto">Contactez-nous pour plus de renseignements</a>
  25.                     </div>
  26.                 </div>
  27.             </div>
  28.         </div>
  29.         {% include "@probundle/probundle/prestation/" ~ prestation.slug  ~".html.twig" ignore missing %}
  30.         {% include "@probundle/probundle/prestation/portfolio.html.twig" %}
  31.         <div id="contact" class="bg-white">
  32.             {% include "@probundle/probundle/home/contactUs.html.twig" %}
  33.         </div>
  34.     </section>
  35. {% endblock %}
  36. {% block javascripts %}
  37.     {{ parent() }}
  38. {% endblock %}