dudi/index.php

9 lines
211 B
PHP
Raw Normal View History

<?php
require_once __DIR__ . '/vendor/autoload.php';
$twig = new \Twig\Environment(
new \Twig\Loader\FilesystemLoader(__DIR__ . '/templates'),
['cache' => false]
);
echo $twig->render('app.html.twig');