15 lines
425 B
Twig
15 lines
425 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Dashboard{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="container mx-auto px-16">
|
|
<h1 class="text-center text-2xl font-bold">Bienvenue sur le dashboard</h1>
|
|
<ul class="list-disc">
|
|
{% for item in files %}
|
|
<li><a class="text-blue-500 hover:text-blue-700" href="{{ item.url }}">/{{ item.path }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|