Skip to content
Snippets Groups Projects
Commit 6ae15fa0 authored by WAGNER ERIC's avatar WAGNER ERIC
Browse files

modification de liens du header

parent dfc5aed2
...@@ -7,6 +7,10 @@ use App\Entity\Ecurie; ...@@ -7,6 +7,10 @@ use App\Entity\Ecurie;
use App\Form\EcurieType; use App\Form\EcurieType;
use App\Repository\EcurieRepository; use App\Repository\EcurieRepository;
use App\Entity\Category;
use App\Form\CategoryType;
use App\Repository\CategoryRepository;
use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Response;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
...@@ -21,11 +25,14 @@ class StaticPages extends AbstractController ...@@ -21,11 +25,14 @@ class StaticPages extends AbstractController
{ {
$ecurieRepository = $this->getDoctrine() $ecurieRepository = $this->getDoctrine()
->getRepository(Ecurie::class); ->getRepository(Ecurie::class);
$categoryRepository = $this->getDoctrine()
->getRepository(Category::class);
$titre = 'Bienvenue'; $titre = 'Bienvenue';
return $this->render('home.html.twig', [ return $this->render('home.html.twig', [
'titre' => $titre, 'titre' => $titre,
'ecuries' => $ecurieRepository->findAll(), 'ecuries' => $ecurieRepository->findAll(),
'categories' => $categoryRepository->findAll(),
]); ]);
} }
} }
\ No newline at end of file
...@@ -36,26 +36,4 @@ ...@@ -36,26 +36,4 @@
</a> </a>
</div> </div>
</div> </div>
<h1 class="text-3xl px-[5rem]">Shop By Driver</h1>
<div class="flex flex-row mt-[1.5rem]">
<a href="">
<img src="{{ asset('img/drivers/max_verstappen.avif') }}" alt="">
</a>
<a href="">
<img src="{{ asset('img/drivers/charles_leclerc.avif') }}" alt="">
</a>
<a href="">
<img src="{{ asset('img/drivers/lewis_hamilton.avif') }}" alt="">
</a>
<a href="">
<img src="{{ asset('img/drivers/fernando_alonso.avif') }}" alt="">
</a>
<a href="">
<img src="{{ asset('img/drivers/sergio_perez.avif') }}" alt="">
</a>
<a href="">
<img src="{{ asset('img/drivers/carlos_sainz.avif') }}" alt="">
</a>
</div>
{% endblock %} {% endblock %}
\ No newline at end of file
...@@ -22,13 +22,12 @@ ...@@ -22,13 +22,12 @@
<nav> <nav>
<ul class="flex flex-row justify-around uppercase"> <ul class="flex flex-row justify-around uppercase">
<li class="hover:bg-[#EEEEEE] px-[1rem] font-medium w-full text-center"> <li class="hover:bg-[#EEEEEE] px-[1rem] font-medium w-full text-center">
<a href="" class="leading-[2.1875rem] ">équipes</a> <a href="{{ path('app_ecurie_index') }}" class="leading-[2.1875rem] ">équipes</a>
</li> </li>
{% for category in categories %}
<li class="hover:bg-[#EEEEEE] px-[1rem] font-medium w-full text-center"> <li class="hover:bg-[#EEEEEE] px-[1rem] font-medium w-full text-center">
<a href="" class="leading-[2.1875rem] ">pilotes</a> <a href="{{ path('app_category_show', {'id': category.id}) }}" class="leading-[2.1875rem] ">{{ category.name }}</a>
</li>
<li class="hover:bg-[#EEEEEE] px-[1rem] font-medium w-full text-center">
<a href="" class="leading-[2.1875rem] ">casquettes et chapeaux</a>
</li> </li>
{% endfor %}
</ul> </ul>
</nav> </nav>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment