This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.

23 lines
451 B
PHP

<?php
class default_content implements SYSTEM\PAGE\Page {
public function html() {
$text = \SYSTEM\PAGE\text::tag('friseurteam');
return 'abc';}//$text['default_content'];}
public static function css() {
return array();
}
public static function js() {
return array();
}
public static function meta() {
return NULL;
}
public static function title() {
return NULL;
}
}