Files
ninedad/templates/home/home.html.twig

17 lines
498 B
Twig
Raw Normal View History

2025-07-28 17:10:56 +02:00
{% extends 'base.html.twig' %}
{%block body%}
<h2>Projets</h2>
<div class='d-flex' style='justify-content: center'>
{% for project in projects %}
<div class='card'>
<a href='{{ path('app_project_view',{id:project.id})}}' class='d-flex' style='flex-direction: column; text-align: center'>
<img src='{{asset(project.logo)}}' style='width:250px'>
<h5>{{project.title}}</h5>
</a>
</div>
{% endfor %}
</div>
{%endblock%}