Changed views from .php extension to .twig

This commit is contained in:
gballan1
2016-04-20 21:06:02 -04:00
parent d79535a09b
commit cdd075f186
10 changed files with 19 additions and 19 deletions

View File

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