Files
Jump/jumpapp/index.php

16 lines
396 B
PHP
Raw Normal View History

2022-02-04 09:53:55 +00:00
<?php
2022-02-04 11:52:57 +00:00
/**
* Initialise the application and generate index page content.
*
* @author Dale Davies <dale@daledavies.co.uk>
* @license MIT
*/
2022-02-04 09:53:55 +00:00
// 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();