templates/components/project/projects.html.twig line 1

Open in your IDE?
  1. <div class="projects">
  2.     <div class="row">
  3.         {% for project in computed.projects %}
  4.             <div class="col-12 col-md-3 mt-3">
  5.                 {{ component('image-title-description', {
  6.                     title: project.name,
  7.                     color: '#' ~ project.color,
  8.                     description: project.shortDescription,
  9.                     imageUrl: 'https://geneve-ville-vivante.ch/img/projects/' ~ project.imageName })
  10.                 }}
  11.             </div>
  12.         {% endfor %}
  13.     </div>
  14. </div>