templates/accueil/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Auto-diagnostiquer son exploitation{% endblock %}
  3. {% block stylesheets %}
  4.     <link rel="stylesheet" href="{{ asset('css/accueil.css') }}">
  5.     <style>
  6.         .accueilDiv {
  7.             background-color: rgba(255, 255, 255, 0.9);
  8.         }
  9.         @media all and (max-width: 1200px){
  10.             .accueilDiv {
  11.                 margin-left: 6rem !important;
  12.                 margin-right: 6rem !important;
  13.             }
  14.         }
  15.         @media all and (max-width: 990px){
  16.             .accueilDiv {
  17.                 margin-left: 3rem !important;
  18.                 margin-right: 3rem !important;
  19.             }
  20.         }
  21.     </style>
  22. {% endblock %}
  23. {% block navBar %}Évaluer son exploitation{% endblock %}
  24. {% block body %}
  25.     <div class="row">
  26.         <div class="col-xl-10 offset-xl-1 col-md-12 offset-md-0">
  27.             <a href="{{ path('afficher_questionnaire') }}">
  28.                 <img src="{{ asset('img/proagri_new.png') }}" alt="Diagnostic" style="width: 100%;">
  29.             </a>
  30.         </div>
  31.     </div>
  32. {% endblock %}