website/app/routes/about.php
2015-08-30 12:34:43 -04:00

8 lines
101 B
PHP
Executable File

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