render('head.html.twig', [ 'title' => "Favoris", 'style' => "public/styles/styleAccueil.css", 'scripts' => array("public/script/theme-toggle.js") ]); echo $twig->render('bandeau.html.twig'); if (!empty($favorites)) { echo "

Vos favoris

"; echo "
"; foreach ($favorites as $favorite) { echo $twig->render('suggestion.html.twig', [ 'quote' => $favorite['content'], 'movie' => $favorite['title'], 'character' => $favorite['caracter'], 'year' => $favorite['dates'], 'imagePath' => $favorite['imgpath'] ]); } echo "
"; } else { echo "

Vous n'avez pas encore de favorits

"; } ?>