{% extends 'front/base.html.twig' %}
{% block title %}Webgiciel - Accueil{% endblock %}
{% block description %}description du site{% endblock %}
{% block keywords %}keywords du site{% endblock %}
{% block stylesheets %}
<style>
#btnNewsletterSubmit{
position: absolute;
top: 0;
right: -1px;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #fdc134;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.disable{
opacity: 0.2;
}
</style>
{% endblock %}
{% block body %}
{% include "front/cases/header.html.twig" %}
{% include "front/elements/hero.html.twig" %}
<!-- début main -->
<main id="main">
{% include "front/elements/clients.html.twig" %}
{% include "front/elements/partenaire.html.twig" %}
{% include "front/elements/about.html.twig" %}
{# include "front/elements/features.html.twig" #}
{# include "front/elements/portfolio.html.twig" #}
{# include "front/elements/team.html.twig" #}
{# include "front/elements/pricing.html.twig" #}
{# include "front/elements/faq.html.twig" #}
{# include "front/elements/contact.html.twig" #}
{% include "front/elements/map.html.twig" %}
</main>
<!-- fin main -->
{% include "front/cases/footer.html.twig" %}
{% endblock %}
{% block javascripts %}
{% include "newsletter/js/newsletter.js" %}
{% include "cookies/js/consentement.js" %}
{% include "front/js/mapAteliers.js" %}
{% endblock %}