templates/new_home/team.html.twig line 1

Open in your IDE?
  1. {% extends 'Layouts/layout.html.twig' %}
  2. {% block title %} Retabit Platform: Team {% endblock %}
  3. {% block content %}
  4. <div class="container mt-5 pb-4">
  5.     <div class="row justify-content-center">
  6.         <div class="col-9">
  7.             <p class="fs-6 mb-5">{% trans %}The RETABIT platform was developed by researchers from La Salle-URL and IREC as part of the RETABIT research project, co-funded by the Spanish Ministry of Science and Innovation.{% endtrans %}</p>
  8.             <div class="row justify-content-center mb-5 align-items-center">
  9.                 <div class="col-4">
  10.                     <img src="{{ asset('img/logo_salle.png') }}"/>
  11.                 </div>
  12.                 <div class="col">
  13.                     <p class="fs-6 mb-3">
  14.                         {% trans %}The <a href='https://www.salleurl.edu/en/research/groups-and-institutes/human-environment-research-group/architecture-representation-comp' style='text-decoration:none;'><span class='fw-bold color_green'>La Salle-URL</span></a> team led the platform’s design and architecture, developed the data ingestion modules, ensured their seamless integration into the platform, and defined the multidimensional indicators.{% endtrans %}<br><br> 
  15.                         
  16.                         {% trans %}Members of the development team{% endtrans %}: Leandro Madrazo, Álvaro Sicilia, Adirane Calvo, Camilo Huertas, Marta Salgado.
  17.                     </p>
  18.                 </div>
  19.             </div>
  20.             <div class="row justify-content-center mb-5 align-items-center">
  21.                 <div class="col-4">
  22.                     <img src="{{ asset('img/logo_irec.png') }}"/>
  23.                 </div>
  24.                 <div class="col">
  25.                     <p class="fs-6 mb-3">
  26.                         {% trans %}The <a href='https://www.irec.cat/' style='text-decoration:none;'><span class='fw-bold color_green'>IREC team</span></a> led the energy simulations using grey-box models, contributed to the definition of the multidimensional indicators, and carried out the characterization of building archetypes. {% endtrans %}<br><br> 
  27.                         {% trans %}Members of the development team{% endtrans %}:
  28.                         Jordi Pascual, Enric Mont, Angelos Mylonas and Nadia Soledad Ibañez Iralde .
  29.                     </p>
  30.                 </div>
  31.             </div>
  32.         </div>
  33.     </div>
  34. </div>
  35. <script src="{{ asset('bundles/fosjsrouting/js/router.min.js') }}"></script>
  36. <script src="{{ path('fos_js_routing_js', { callback: 'fos.Router.setData' }) }}"></script>
  37. <script type="text/javascript">
  38.     
  39. </script>
  40. {% endblock %}