16 lines
548 B
Twig
16 lines
548 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'>
|
|
<a href='{{ path('app_project_view',{id:project.id})}}' class='d-flex' style='flex-direction: column; text-align: center; margin: 20px 80px 20px 80px;'>
|
|
<img src='{{asset(project.logo)}}' style='width:100px; margin-bottom:20px;'>
|
|
<h5>{{project.title}}</h5>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{%endblock%} |