Added first draft Homepage

This commit is contained in:
Kevin Frantz
2018-07-14 17:48:24 +02:00
parent d1a29b6d70
commit 2cefb4187c
14 changed files with 113 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace controller\standart;
use controller\AbstractController;
/**
*
* @author kevinfrantz
*
*/
final class Standart extends AbstractController
{
public function homepage():void{
$this->render('standart/homepage.html.twig');
}
}