diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-12 10:14:46 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-12 10:14:46 -0500 |
commit | 859f31065da728fcb1387645ab1c92390b372412 (patch) | |
tree | 29457dce1cd2269ac0446a59f3fe601476895f29 /src/web/_controller/projects.php | |
parent | switch to POST for posting comments (diff) | |
download | website-859f31065da728fcb1387645ab1c92390b372412.tar.gz website-859f31065da728fcb1387645ab1c92390b372412.tar.bz2 website-859f31065da728fcb1387645ab1c92390b372412.zip |
refactor _views folder
Diffstat (limited to 'src/web/_controller/projects.php')
-rw-r--r-- | src/web/_controller/projects.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/_controller/projects.php b/src/web/_controller/projects.php index cfa28b5..fea4664 100644 --- a/src/web/_controller/projects.php +++ b/src/web/_controller/projects.php @@ -14,7 +14,7 @@ class Projects_controller extends Controller { $data = $this->projects_model->get_data(); $this->view('header', $data); - $this->view('apps/projects', $data); + $this->view('projects/main', $data); $this->view('footer', $data); } |