templates/front/index.html.twig line 1

Open in your IDE?
  1. {% extends 'front/base.html.twig' %}
  2. {% block title %}Webgiciel - Accueil{% endblock %}
  3. {% block description %}description du site{% endblock %}
  4. {% block keywords %}keywords du site{% endblock %}
  5. {% block stylesheets %}
  6.     <style>
  7.         #btnNewsletterSubmit{
  8.             position: absolute;
  9.             top: 0;
  10.             right: -1px;
  11.             bottom: 0;
  12.             border: 0;
  13.             background: none;
  14.             font-size: 16px;
  15.             padding: 0 20px;
  16.             background: #fdc134;
  17.             color: #fff;
  18.             transition: 0.3s;
  19.             border-radius: 50px;
  20.             box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  21.         }
  22.         .disable{
  23.             opacity: 0.2;
  24.         }
  25.     </style>
  26. {% endblock %}
  27. {% block body %}
  28.     {% include "front/cases/header.html.twig" %}
  29.     {% include "front/elements/hero.html.twig" %}
  30.     <!-- début main -->
  31.     <main id="main">
  32.         {% include "front/elements/clients.html.twig" %}
  33.         {% include "front/elements/partenaire.html.twig" %}
  34.         {% include "front/elements/about.html.twig" %}
  35.         {# include "front/elements/features.html.twig" #}
  36.         {# include "front/elements/portfolio.html.twig" #}
  37.         {# include "front/elements/team.html.twig" #}
  38.         {# include "front/elements/pricing.html.twig" #}
  39.         {# include "front/elements/faq.html.twig" #}
  40.         {# include "front/elements/contact.html.twig" #}
  41.         {% include "front/elements/map.html.twig" %}
  42.     </main>
  43.     <!-- fin main -->
  44.     {% include "front/cases/footer.html.twig" %}
  45. {% endblock %}
  46. {% block javascripts %}
  47.     {% include "newsletter/js/newsletter.js" %}
  48.     {% include "cookies/js/consentement.js" %}
  49.     {% include "front/js/mapAteliers.js" %}
  50.     
  51. {% endblock %}