This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/view/index.php
2022-01-16 17:12:04 +01:00

7 lines
182 B
PHP

<?php $this->view('template/header', ['title' => $title]); ?>
<h1>Hello world</h1>
<p>This is a message from the view</p>
<p><?=$data?></p>
<?php $this->view('template/footer'); ?>