diff options
Diffstat (limited to '')
| -rw-r--r-- | src/web/_model/home.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/web/_model/home.php b/src/web/_model/home.php new file mode 100644 index 0000000..d1041db --- /dev/null +++ b/src/web/_model/home.php @@ -0,0 +1,10 @@ +<?php /* Copyright (c) 2024 Freya Murphy */ +class Home_model extends Model { + + public function get_data(): ?array { + $data = parent::get_data(); + $data['title'] = lang('first_name'); + $data['desc'] = lang('default_short_desc'); + return $data; + } +} |