Files
Jump/jumpapp/index.php
2022-02-04 11:52:57 +00:00

16 lines
396 B
PHP

<?php
/**
* Initialise the application and generate index page content.
*
* @author Dale Davies <dale@daledavies.co.uk>
* @license MIT
*/
// 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();