feat: ✨ add basic first website nibbles
This commit is contained in:
parent
24167ed96c
commit
ef96bd935b
6 changed files with 67 additions and 0 deletions
11
index.php
Normal file
11
index.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
require_once 'vendor/autoload.php';
|
||||
|
||||
$loader = new \Twig\Loader\FilesystemLoader('templates');
|
||||
$twig = new \Twig\Environment($loader);
|
||||
|
||||
echo $twig->render('index.html',[
|
||||
"a_variable" => "is very spicy. In a good way."
|
||||
]);
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue