website/app/routes/pages/contact.php

8 lines
112 B
PHP
Executable File

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