templates/epyp/es/index.html.twig line 1

Open in your IDE?
  1. {% extends 'baseES.html.twig' %}
  2. {% block title %}EPYP{% endblock %}
  3. {% block body %}
  4. </div>
  5. <div style="background-image: url('{{ asset('uploads/images/'~ images['image-haut'].url) }}'); width: 100%; min-height: 500px; background-position: center; position: relative; background-repeat: no-repeat;background-size: cover"
  6.      class="primary">
  7.     <div class="w-100 fs-1 fw-semibold  position-absolute top-50  start-50 translate-middle text-white text-center" style="height: 10vh">
  8.         EUROPEAN PROJECT FOR YOUTH PARTICIPATION
  9.     </div>
  10.     <a href="#section1">
  11.         <button type="button"
  12.                 class="btn btn-primary fw-semibold p-3 mx-auto position-absolute top-75 start-50 translate-middle">
  13. {#           ATTENTION TRADUCTION REVERSO#}
  14.             Descubrir
  15.         </button>
  16.     </a>
  17. </div>
  18. <div class="w-100" style=" min-height: 100vh">
  19.     <div class="container-fluid " style=" min-height: 80vh">
  20.         <div class="row align-items-center d-flex">
  21.             <div class="col-md-6 col-sm-12 p-md-5 p-sm-2 text-left my-5  " style="text-align: justify">
  22.                 <div class="px-md-5">
  23.                     <span class="fw-bold fs-3" style="color: #6E8BC4">El proyecto</span> <br>
  24.                     {% if texts is not empty and texts['text-1'].content is not empty %}
  25.                         {{ texts['text-1'].content|raw }}
  26.                     {% endif %}
  27.                 </div>
  28.             </div>
  29.             <div class="col col-md-6 col-sm-12 my-5">
  30.                 <img src="{{ asset('uploads/images/'~ images['image-centre'].url) }}" alt="" class="w-75 mx-auto d-block">
  31.             </div>
  32.         </div>
  33.         <div class="container-fluid text-center p-5" style=" min-height: 10vh">
  34.             <a href="#section2">
  35.                 <button type="button" class="btn btn-primary fw-semibold p-3">
  36. {#                    ATTENTION TRADUCTION REVERSO#}
  37.                     Seguir
  38.                 </button>
  39.             </a>
  40.         </div>
  41.     </div>
  42. </div>
  43.     <div class="w-100 text-center fs-1 fw-semibold p-5" id="section2">
  44.         LA CONSTRUCCIÓN DE LA HERRAMIENTA
  45.     </div>
  46.     <div class="container-fluid p-md-5 p-sm-0">
  47.         <div class="row">
  48.             <div class="col-md-6 col-sm-12 p-md-5 p-sm-4 text-left py-5 " style="text-align: justify">
  49.                 <div class="p-md-5 p-xs-2">
  50.                     <span class="fw-bold fs-3" style="color: #6E8BC4">Metodología</span> <br>
  51.                     {% if texts is not empty and texts['text-2'].content is not empty %}
  52.                         {{ texts['text-2'].content|raw }}
  53.                     {% endif %}
  54.                 </div>
  55.             </div>
  56.             <div class="col-md-6 col-sm-12 p-md-5 p-sm-4 text-left py-5  " style="text-align: justify">
  57.                 <div class="p-md-5 p-xs-2 mx-auto">
  58.                     <span class="fw-bold fs-3" style="color: #6E8BC4">Nuestras acciones</span> <br>
  59.                     {% if texts is not empty and texts['text-3'].content is not empty %}
  60.                         {{ texts['text-3'].content|raw }}
  61.                     {% endif %}
  62.                 </div>
  63.             </div>
  64.         </div>
  65.         <div class="container-fluid text-center p-md-5 p-sm-2 mt-5">
  66.             <a href="{{ path('app-questionnaire-index') }} ">
  67.                 <button type="button" class="btn btn-primary fw-semibold p-3">
  68. {#                    ATTENTION TRADUCTION REVERSO#}
  69.                     Acceder a la herramienta
  70.                 </button>
  71.             </a>
  72.         </div>
  73.         <div class="container-flex fw-light">
  74.             <div class=" text-center mx-auto ">
  75.                 {#                    ATTENTION TRADUCTION REVERSO#}
  76.                 {% if texts is not empty and texts['text-4'].content is not empty %}
  77.                     {{ texts['text-4'].content|raw }}
  78.                 {% endif %}
  79.             </div>
  80.         </div>
  81.         {{ include('/_includes/consortium_epyp.html.twig') }}
  82.         {% endblock %}