<?php
namespace App\Controller;
use App\Entity\Timeline;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class TimelineController extends AbstractController
{
/**
* @Route("/{slug}", name="timeline")
*/
public function index(Timeline $timeline)
{
return $this->render('timeline.html.twig', ['timeline' => $timeline]);
}
}