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

View File

@ -0,0 +1,7 @@
<?php
$app->get('/', function() use($app) {
$app->response->redirect($app->urlFor('home'), '303');
})->name('index');