18 lines
232 B
PHP
18 lines
232 B
PHP
|
<?PHP
|
||
|
/**
|
||
|
* The main display file for standalone pages.
|
||
|
*
|
||
|
* @author Joshua Ramon Enslin <joshua@jrenslin.de>
|
||
|
*/
|
||
|
|
||
|
// Include functions and settings.
|
||
|
|
||
|
require __DIR__ . "/inc/functions.php";
|
||
|
|
||
|
ensureEnvironment();
|
||
|
|
||
|
echo "hi";
|
||
|
|
||
|
?>
|
||
|
|