* @link https://getkirby.com * @copyright Bastian Allgeier * @license https://getkirby.com/license */ class Template extends BaseTemplate { public function __construct( public string $file ) { parent::__construct( name: basename($this->file) ); } public function file(): string|null { return $this->file; } }