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

15 lines
359 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'>
2025-07-29 14:51:01 +02:00
<h5>{{project.title}}</h5>
{{ render(path("app_files",{domain:'project',id:project.id, editable:0})) }}
2025-07-28 17:10:56 +02:00
</div>
{% endfor %}
</div>
{%endblock%}