summaryrefslogtreecommitdiff
path: root/src/web/_controller/home.php
blob: a673e60261eff0d3f2f178b55863003018334830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php /* Copyright (c) 2024 Freya Murphy */
class Home_controller extends Controller {

	public function index(): void
	{
		parent::index();

		$data = Model::get_base_data();
		$this->view('header', $data);
		$this->view('apps/home', $data);
		$this->view('footer', $data);
	}

}

?>