app
Fieldprotocol
config
routes
apiv1
errors
pages
about.php
contact.php
home.php
index.php
music.php
shows.php
database.php
routes.php
start.php
assets
bin
public
src
views
.gitignore
Gruntfile.js
README.md
composer.json
composer.lock
package-lock.json
package.json
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');
|