templates/page/home.html.twig line 1

Open in your IDE?
  1. {# templates/page/home.html.twig #}
  2. {% extends 'base.html.twig' %}
  3. {% block body %}
  4.     <main class="main_home">
  5.         <section class="main_container Dfx Dfx_Col">
  6.             <div class="Dfx Dfx_JC_C">
  7.                 <div class="title_style Txt_C">
  8.                     <h1>Rencontre - Partage - Échange</h1>
  9.                     <h2>Épanouissez-vous !</h2>
  10.                 </div>
  11.             </div>
  12.             <section class="Dfx Dfx_AI_C sec_home">
  13.                 <article class="Dfx Dfx_Wrap art_home">
  14.                     <div class="sec_art login_signup Dfx Dfx_Col Dfx_AI_C Dfx_JC_C R_W">
  15.                         <div class="info_text Txt_C">
  16.                             <span>Soyez responsable, protégez-vous</span>
  17.                         </div>
  18.                         <div class="ls_container">
  19.                             <div class="ls_content Dfx Dfx_AI_C Dfx_JC_C">
  20.                                 <div class="login_container">
  21.                                     <div class="login_content ls_txt_color Txt_E">
  22.                                         <button type="button" id="modal_login" class="Btn_NS" data-event="modal" data-target="form_modal_login">Connexion</button>
  23.                                     </div>
  24.                                 </div>
  25.                                 <div class="sep_content"></div>
  26.                                 <div class="signup_container">
  27.                                     <div class="signup_content ls_txt_color">
  28.                                         <button type="button" id="modal_signup" class="Btn_NS" data-event="modal" data-target="form_modal_signup">S'inscrire</button>
  29.                                     </div>
  30.                                 </div>
  31.                             </div>
  32.                         </div>
  33.                     </div>
  34.                     <div class="sec_art logo Dfx Dfx_AI_C Dfx_JC_C R_W">
  35.                         <div class="logo_container">
  36.                             <div class="logo_content">
  37.                                 <div>
  38.                                     <img class="Rimg" src="{{ asset('img/logo.png') }}" alt="Logo">
  39.                                 </div>
  40.                             </div>
  41.                         </div>
  42.                     </div>
  43.                     <div class="sec_art infos Dfx Dfx_R_ColRev Dfx_AI_C Dfx_JC_C R_W">
  44.                         <div class="info_text Txt_C">
  45.                             <span>Toutes orientations sexuelles admises</span>
  46.                         </div>
  47.                         
  48.                         <div class="infos_container">
  49.                             <div class="infos_content Dfx Dfx_AI_C Dfx_JC_C">
  50.                                 <div class="male_container">
  51.                                     <div class="male_content Txt_E">
  52.                                         <span>Hommes</span>
  53.                                     </div>
  54.                                 </div>
  55.                                 <div class="sep_content"></div>
  56.                                 <div class="female_container">
  57.                                     <div class="female_content">
  58.                                         <span>Femmes</span>
  59.                                     </div>
  60.                                 </div>
  61.                             </div>
  62.                         </div>
  63.                     </div>
  64.                 </article>
  65.             </section>
  66.             <footer class="Dfx Dfx_AI_C Dfx_JC_C">
  67.                 <div>
  68.                     <nav>
  69.                         <ul class="terms Dfx Dfx_Gap Dfx_Wrap Dfx_R_ColRow">
  70.                             <li class="R_W Txt_C">
  71.                                 <a href="{{ path('terms_and_conditions') }}" target="_blank">Conditions d'utilisations</a>
  72.                             </li>
  73.                             <li class="R_W Txt_C">
  74.                                 <a href="{{ path('legal_notice') }}" target="_blank">Mentions légales</a>
  75.                             </li>
  76.                             <li class="R_W Txt_C">
  77.                                 <a href="{{ path('privacy_policy') }}" target="_blank">Vie privée</a>
  78.                             </li>
  79.                         </ul>
  80.                     </nav>
  81.                 </div>
  82.             </footer>
  83.         </section>
  84.     </main>
  85.     {% for msg in app.flashes('expired_token') %}
  86.         <template id="expired_token">
  87.             <h1>Information</h1>
  88.             
  89.             <p>{{ msg }}</p>
  90.         </template>
  91.     {% endfor %}
  92.     {% for msg in app.flashes('reset_validated_pswd') %}
  93.         <template id="reset_validated_pswd">
  94.             <span data-identified-token="{{ msg }}"></span>
  95.         </template>
  96.     {% endfor %}
  97. {% endblock %}