This commit is contained in:
2025-07-29 14:51:01 +02:00
parent 540f6cd1d6
commit 2558363a67
4 changed files with 9 additions and 10 deletions

View File

@ -5,10 +5,8 @@
<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>
<h5>{{project.title}}</h5>
{{ render(path("app_files",{domain:'project',id:project.id, editable:0})) }}
</div>
{% endfor %}