templates/home/contacts.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Contacts{% endblock %}
  3. {% block stylesheets %}
  4.     <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous" />
  5.     <style>
  6.     h1 {
  7.         font-size: 46px;
  8.         font-weight: bold;
  9.     }
  10.     .contacts  {
  11.         display:grid;
  12.         grid-template-columns: 5fr 3fr;
  13.     }
  14.     
  15.     .contacts h2 {
  16.         color: var(--titrelightcolor);
  17.         text-align: left;
  18.         margin: 50px 0 30px 0;
  19.         font-size: 26px;
  20.         font-weight: bold;
  21.     }
  22.     .contacts h3 {
  23.         font-size: 18px;
  24.         font-weight: bold;
  25.         text-align: left;
  26.         margin: 20px 0 10px 0;
  27.         font-family: 'Fenomen Sans';
  28.     }
  29.     
  30.     .icones {
  31.         margin: 0 0 0 auto;
  32.         padding-left:20px;
  33.     }
  34.     .contacts .grid  {
  35.         display:grid;
  36.         grid-template-columns: auto 1fr;
  37.         margin-bottom: 30px;
  38.         
  39.     }
  40.     .icone {
  41.         margin-right: 20px;
  42.     }
  43.     .contacts .grid .cell2 {
  44.         max-width: 240px;
  45.     }
  46.     .contacts a {
  47.         color: var(--lknaboutcolor) !important;
  48.     }
  49.     .contacts ul {
  50.         margin: 0;
  51.         padding: 0;
  52.         list-style: none;
  53.     }
  54.     .contacts li {
  55.         margin: 3px 0 5px 0;
  56.         font-size: 14px;
  57.     }
  58.     .contacts li i {
  59.         color: var(--lodeaocolor);
  60.         margin-right: 5px;
  61.         font-size: 12px;
  62.     }
  63.     @media screen and (max-width: 992px) {
  64.         .contacts { grid-template-columns: 1fr;  }
  65.         .icones { margin: 0 0 0 0; padding-left: 0; }
  66.         .contacts .grid .cell2 { max-width: 100%; }
  67.     }
  68.     </style>
  69.      <script src="https://www.google.com/recaptcha/api.js" async defer></script>
  70. {% endblock %}
  71. {% block body %}
  72.     <div class="breadcrumb"><div class="container">
  73.         <a href="{{ path('home_page') }}">Accueil</a> / Contacts</div>
  74.     </div>
  75.     <h1>Contacts</h1> 
  76.     <div class="container contacts">
  77.         
  78.         <div>
  79.             <h2>{{ contactmessage.nom }}</h2>
  80.             <p>{{ contactmessage.description|raw }}</p>  
  81.             {{ form_start(form) }}
  82.                 {{ form_widget(form) }}
  83.                 <div class="g-recaptcha margin-top-10" data-sitekey="6LcfSJwmAAAAAEVbB-U5_HYTJJj2rUSYBtzpf-K2"></div>
  84.                 <button class="btn-send">{{ button_label|default('ENVOYER') }}</button>
  85.             {{ form_end(form) }}
  86.             {% if msgretour != '' %}
  87.             <div style="font-size:18px; font-weight:bold; text-align:center; color:#759458; margin-top:10px;">{{ msgretour }}</div>
  88.             {% endif %}
  89.             <br/><br/><br/>
  90.         </div>
  91.         
  92.         <div class="icones">
  93.             <div class="grid">
  94.                 <img class="icone" src="{{ asset('assets/img/icon-contacts-1.png') }}" />
  95.                 <div class="cell2">
  96.                     <h3>LIENS UTILES</h3>
  97.                     <ul>
  98.                     {% for contact in liens %}
  99.                     <li><i class="fas fa-chevron-right"></i> <a href="{{ contact.adresse }}" target="_blank"><b>{{ contact.nom }}</b></a>&nbsp;: {{ contact.description }}</li>
  100.                     {% endfor %}
  101.                     </ul>
  102.                 </div>
  103.             </div>
  104.             <div class="grid">
  105.                 <img class="icone" src="{{ asset('assets/img/icon-contacts-3.png') }}" />
  106.                 <div class="cell2">
  107.                     <h3>ADMINISTRATEURS</h3>
  108.                     <ul>
  109.                     {% for contact in admins %}
  110.                         <li>
  111.                             <i class="fas fa-chevron-right"></i><b>{{ contact.nom }}</b>, {{ contact.description }}<br/>
  112.                             &nbsp;&nbsp;&nbsp;<a href="mailto:{{ contact.adresse }}" target="_blank">{{ contact.adresse }}</a>
  113.                         </li>
  114.                     {% endfor %}
  115.                     </ul>
  116.                 </div>
  117.             </div>
  118.              <br/><br/><br/>
  119.         </div>
  120.     </div>
  121. {% endblock %}