mirror of
https://github.com/daledavies/jump.git
synced 2025-11-17 02:10:42 +01:00
16 lines
396 B
PHP
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();
|