templates/baseAccueil.html.twig line 1

Open in your IDE?
  1. {% extends "baseForm.html.twig" %}
  2. {% block code %}
  3.     <h1>Pour quel évènement avez-vous besoin d'un Dj ?</h1>
  4.     <div class="flexImg">
  5.         <div class="baseImg">
  6.             <a href="{{ path('mariage') }}">
  7.                 <img src="{{ 'img/alliance.svg' }}" alt="" width="150px" height="200px">
  8.                 <p>Mariage</p>
  9.             </a>
  10.         </div>
  11.         <div class="baseImg">
  12.                 <a href="{{ path('anniversaire') }}">
  13.                     <img src="{{ 'img/Logo_anniversaire_rouge.svg (1).svg' }}" alt="" width="150px" height="200px">
  14.                     <p>Anniversaire</p>
  15.                 </a>
  16.             </div>
  17.         <div class="baseImg">
  18.             <a href="{{ path('soiree-d-entreprise') }}">
  19.                 <img src="{{ 'img/profil.svg' }}" alt="" width="150px" height="200px">
  20.                 <p>Soirée d'entreprise</p>
  21.             </a>
  22.         </div>
  23.     </div>
  24. {% endblock %}