10 lines
167 B
PHP
Executable file
10 lines
167 B
PHP
Executable file
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Timber\Timber;
|
|
|
|
$context = Timber::context();
|
|
$templates = ['base.twig'];
|
|
|
|
Timber::render(data: $context, filenames: $templates);
|