kinda working

This commit is contained in:
2023-10-18 22:42:01 +02:00
parent 8b6ea946bf
commit b3ded91d01
18 changed files with 1535 additions and 15 deletions

View File

@ -0,0 +1,19 @@
<?php
class Home extends Page
{
function setMenu()
{
$this->menu_text = 'home';
$this->menu_image = 'mdi-action-home';
$this->menu_priority = 0;
}
function index()
{
$this->set('template', "home.mustache");
return $this->renderPagecontent();
}
function maySeeThisPage(){return true;}
}