Part on routers finished

This commit is contained in:
Patryk Hegenberg 2022-12-12 21:12:05 +01:00
parent a1e1a43d81
commit 8bb5f373f8
8 changed files with 68 additions and 9 deletions

3
controllers/about.php Normal file
View file

@ -0,0 +1,3 @@
<?php
$heading = "About Us";
require "views/about.view.php";

3
controllers/contact.php Normal file
View file

@ -0,0 +1,3 @@
<?php
$heading = "Contact Us";
require "views/contact.view.php";

3
controllers/index.php Normal file
View file

@ -0,0 +1,3 @@
<?php
$heading = "Home";
require "views/index.view.php";

3
controllers/mission.php Normal file
View file

@ -0,0 +1,3 @@
<?php
$heading = "Mission";
require "views/mission.view.php";