Initial commit

This commit is contained in:
KirbyCMS Deploy
2026-04-15 11:50:31 +00:00
commit 0a8c107828
1114 changed files with 203788 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
use Kirby\Cms\Page;
use Kirby\Content\Field;
class FilesPage extends Page
{
public function metaDefaults()
{
return [
'robotsIndex' => false
];
}
/**
* Override the page title to be static
* to the template name
*/
public function title(): Field
{
return new Field($this, 'title', t("page.{$this->intendedTemplate()->name()}.title"));
}
}