Moved the main site pages into folders for better project structure

This commit is contained in:
Gregory Ballantine
2016-11-28 18:10:55 -05:00
parent 1c9a802a3c
commit b46551625d
12 changed files with 6 additions and 6 deletions

7
app/routes/pages/home.php Executable file
View File

@ -0,0 +1,7 @@
<?php
$app->get('/home', function() use($app) {
$app->render('pages/home.twig');
})->name('home');