templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Genève Ville Vivante{% endblock %}
  3. {% block body %}
  4.     <div class="home-projects-container">
  5.         <div class="container">
  6.             {{ component('header-title-subtitle', { slug: 'be-gvv'}) }}
  7.             {{ component('projects', { isForHome: true }) }}
  8.         </div>
  9.     </div>
  10.     <div class="home-team-container">
  11.         <div class="container">
  12.             {{ component('header-title-subtitle',  { slug: 'home-la-team'}) }}
  13.             {{ component('team', { slug: 'geneve-ville-vivante'} ) }}
  14.         </div>
  15.     </div>
  16. {% endblock %}