templates/front/main/home.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Bienvenue sur TGS Concept !{% endblock %}
  3. {% block body %}
  4.     <!-- main -->
  5.     {# <div class="py-2 text-center">
  6.         <img src="{{ asset('assets/images/logo/TGS-concept_LOGO-Noir.jpg') }}" height="100" alt="Logo TGS Concept" class="mb-3">
  7. <!--        <h1 class="display-6 fw-bold">dO'ggy</h1> -->
  8.     </div> #}
  9.     <div class="container-xl bg-secondary p-2 content">
  10.         <div class="row mb-2 text-center">
  11.             <h1>TGS Concept</h1>
  12.             <p>Bienvenue sur le site web de <strong>TGS Concept</strong>.</p>
  13.             <p>Vous allez pouvoir découvrir quelques-une de nos créations et <a href="{{ path('app_main_contact') }}">nous contacter</a> si vous le souhaitez.</p>
  14.             <h3>Bonne visite !</h3>
  15.             <a name="creations"></a>
  16.             {% include "front/main/_block_galleries.html.twig" %}
  17.         </div>
  18.     </div>
  19. {% endblock %}