2015-08-30 12:34:43 -04:00
|
|
|
<?php
|
2016-04-20 21:06:02 -04:00
|
|
|
|
2015-08-30 14:30:18 -04:00
|
|
|
$app->get('/home', function() use($app) {
|
2016-04-20 21:06:02 -04:00
|
|
|
|
2016-11-28 18:10:55 -05:00
|
|
|
$app->render('pages/home.twig');
|
2015-08-30 12:34:43 -04:00
|
|
|
|
|
|
|
})->name('home');
|