You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
<?php
|
|
|
|
// appele avec index.php ne pas metre si controleur fonctionnel
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
$loader = new \Twig\Loader\FilesystemLoader('vue/templates');
|
|
$twig = new \Twig\Environment($loader, [
|
|
'cache' => false,
|
|
]);
|
|
//
|
|
echo $twig->render('head.html.twig', array(
|
|
'title' => "Quote",
|
|
'style' => "../public/styles/styleQuote.css",
|
|
));
|
|
|
|
echo $twig->render('bandeau.html.twig');
|
|
echo $twig->render('quote.html.twig', array(
|
|
'srcImg' => "../default.jpg",
|
|
'nameCarac' => "default",
|
|
'quoteContent' => "je test la page",
|
|
'sourceName' => "une source",
|
|
'dateSortie' => "1999",
|
|
'nbLike' => "0",
|
|
'comment'=> array(
|
|
array(
|
|
'user'=>'toto',
|
|
'content'=>'12345674fkjgvhgtfoidshfziutgfos'
|
|
),
|
|
array(
|
|
'user'=> 'tata',
|
|
'content'=>'azertyuiopqsdfghjklmwxcvbn'
|
|
)
|
|
)));
|
|
?>
|