templates\home\index.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}E-NouNou{% endblock %}
  3. {% block body %}
  4.     <div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel">
  5.         <div class="carousel-indicators">
  6.             <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
  7.             <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
  8.         </div>
  9.         <div class="carousel-inner">
  10.             <div class="carousel-item active">
  11.                 <img src="{{ asset('assets/images/slide_1_h500t2.jpg') }}" class="d-block w-100" alt="...">
  12.                 <div class="carousel-caption d-none d-md-block">
  13.                 </div>
  14.             </div>
  15.             <div class="carousel-item">
  16.                 <img src="{{ asset('assets/images/slide_2_h500t.jpg') }}" class="d-block w-100" alt="...">
  17.                 <div class="carousel-caption d-none d-md-block">
  18.                 </div>
  19.             </div>
  20.         </div>
  21.         <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
  22.             <span class="carousel-control-prev-icon" aria-hidden="true"></span>
  23.             <span class="visually-hidden">Previous</span>
  24.         </button>
  25.         <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
  26.             <span class="carousel-control-next-icon" aria-hidden="true"></span>
  27.             <span class="visually-hidden">Next</span>
  28.         </button>
  29.     </div>
  30.     <div class="container mt-5">
  31.         <div class="row featurette">
  32.             <div class="col-md-7">
  33.                 <h2 class="featurette-heading">First featurette heading. <span class="text-muted">It’ll blow your mind.</span></h2>
  34.                 <p class="lead">Some great placeholder content for the first featurette here. Imagine some exciting prose here.</p>
  35.             </div>
  36.             <div class="col-md-5">
  37.                 <svg class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto" width="500" height="500" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: 500x500" preserveAspectRatio="xMidYMid slice" focusable="false"><title>Placeholder</title><rect width="100%" height="100%" fill="#eee"/><text x="50%" y="50%" fill="#aaa" dy=".3em">500x500</text></svg>
  38.             </div>
  39.         </div>
  40.         <hr class="featurette-divider">
  41.         <div class="row featurette">
  42.             <div class="col-md-7 order-md-2">
  43.                 <h2 class="featurette-heading">Oh yeah, it’s that good. <span class="text-muted">See for yourself.</span></h2>
  44.                 <p class="lead">Another featurette? Of course. More placeholder content here to give you an idea of how this layout would work with some actual real-world content in place.</p>
  45.             </div>
  46.             <div class="col-md-5 order-md-1">
  47.                 <svg class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto" width="500" height="500" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: 500x500" preserveAspectRatio="xMidYMid slice" focusable="false"><title>Placeholder</title><rect width="100%" height="100%" fill="#eee"/><text x="50%" y="50%" fill="#aaa" dy=".3em">500x500</text></svg>
  48.             </div>
  49.         </div>
  50.     </div>
  51. {% endblock %}