mirror of
https://github.com/daledavies/jump.git
synced 2025-11-17 10:20:42 +01:00
9 lines
258 B
PHP
9 lines
258 B
PHP
|
|
<?php
|
||
|
|
// Provided by composer for psr-4 style autoloading.
|
||
|
|
require __DIR__ .'/vendor/autoload.php';
|
||
|
|
|
||
|
|
// Initialise the application, then render and output its index page.
|
||
|
|
$jumpapp = new Jump\Main();
|
||
|
|
$jumpapp->build_index_page();
|
||
|
|
echo $jumpapp->get_output();
|