2025-03-23 14:06:44 +01:00

14 lines
322 B
PHP

<?php
namespace Portfolio\Source\Design\Controller\About;
use Portfolio\Source\Design\Controller\Base;
class Index extends Base
{
public function index(): void
{
// Affiche la vue portfolio/template/about/index.html dans le layout portfolio/template/base.html
$this->show('about.index');
}
}