8 lines
112 B
PHP
Executable File
8 lines
112 B
PHP
Executable File
<?php
|
|
|
|
$app->get('/contact', function() use($app) {
|
|
|
|
$app->render('pages/contact.twig');
|
|
|
|
})->name('contact');
|