templates/new_home/about.html.twig line 1

Open in your IDE?
  1. {% extends 'Layouts/layout.html.twig' %}
  2. {% block title %} Retabit Platform: About {% endblock %}
  3. {% block content %}
  4. <div class="container mt-5 pb-4" style="min-height: 50vh;">
  5.     <div class="row justify-content-center">
  6.         <div class="col-9">
  7.             {% if app.request.locale == 'en' %}
  8.                 {% set link = 'https://www.retabit.es/' %}
  9.             {% elseif app.request.locale == 'ca' %}
  10.                 {% set link = 'https://www.retabit.es/ca/inici-2/' %}
  11.             {% elseif app.request.locale == 'es' %}
  12.                 {% set link = 'https://www.retabit.es/es/inicio/' %}
  13.             {% endif %}
  14.             <p class="fs-6 mb-3">{% trans %}The platform is the result of the {% endtrans %} <a href="{{ link }}" style='text-decoration:none;'><span class='fw-bold color_green'>{% trans %} Retabit research project{% endtrans %}</span></a> {% trans %} (PID2020-115936RB-C21), co-funded by the Spanish Ministry of Science and Innovation, from October 2021 to December 2024.{% endtrans %} </p>
  15.             <p class="fs-6">
  16.                 {% trans %}The consortium of the project is formed by <a href='https://www.salleurl.edu/en' style='text-decoration:none;'><span class='fw-bold color_green'>La Salle-Universitat Ramon Llull</span></a> (coordinator) and  <a href='https://www.irec.cat/' style='text-decoration:none;'><span class='fw-bold color_green'>Institut de Recerca en Energia de Catalunya</span></a> (IREC).{% endtrans %}<br><br> 
  17.             </p>
  18.             <p class="fs-6">
  19.                 {% trans %}During the three-year development of the platform, representatives from local administrations and organisations involved in building rehabilitation were actively involved to discuss its functionalities and test the prototype at various stages, including the Municipality of Sant Cugat del Vallès, Municipality of Rubí, the Fundació Europace, Agència de la Energia de Barcelona, and Diputació de Barcelona.{% endtrans %} <br><br> 
  20.             </p>
  21.         </div>
  22.     </div>
  23. </div>
  24. <script src="{{ asset('bundles/fosjsrouting/js/router.min.js') }}"></script>
  25. <script src="{{ path('fos_js_routing_js', { callback: 'fos.Router.setData' }) }}"></script>
  26. <script type="text/javascript">
  27.     
  28. </script>
  29. {% endblock %}