website/app/routes/pages/about.php

8 lines
106 B
PHP
Raw Normal View History

2015-08-30 12:34:43 -04:00
<?php
2015-08-30 12:34:43 -04:00
$app->get('/about', function() use($app) {
$app->render('pages/about.twig');
2015-08-30 12:34:43 -04:00
})->name('about');