basic website, basic templating

This commit is contained in:
2022-10-21 14:31:48 +02:00
parent 303fc11327
commit fdd24d90da
11 changed files with 196 additions and 0 deletions

@ -0,0 +1,14 @@
<?php
namespace App\Controller;
use App\Service\Template;
use stdClass;
class AddressBook extends stdClass
{
public function __construct(Template $template)
{
$template->render(templateName: 'index.tpl');
}
}