Files
ninedad/templates/home/home.html.twig
2025-07-29 14:51:01 +02:00

15 lines
359 B
Twig

{% extends 'base.html.twig' %}
{%block body%}
<h2>Projets</h2>
<div class='d-flex' style='justify-content: center'>
{% for project in projects %}
<div class='card'>
<h5>{{project.title}}</h5>
{{ render(path("app_files",{domain:'project',id:project.id, editable:0})) }}
</div>
{% endfor %}
</div>
{%endblock%}