Files
ninemine/templates/home/home.html.twig

17 lines
498 B
Twig
Raw Normal View History

2025-07-06 16:29:23 +02:00
{% extends 'base.html.twig' %}
2025-07-07 17:30:12 +02:00
{%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>
2025-07-06 16:29:23 +02:00
</div>
{% endfor %}
2025-07-07 17:30:12 +02:00
</div>
2025-07-06 16:29:23 +02:00
2025-07-07 17:30:12 +02:00
{%endblock%}