initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:32:16 -06:00
commit 194e0ca89e
399 changed files with 16444 additions and 0 deletions

23
production/index.php Executable file
View File

@@ -0,0 +1,23 @@
<?php
include "php/classes/page.php";
$page = new Page();
# if a language has been chosen, then skip the language choice (intro) page
if((isset($_COOKIE['lang']) && !empty($_COOKIE['lang'])) || !empty($_GET['lang']))
{
header('Location: home.php');
}
$page->attr('title','The International Jairus Society : Language Choice');
$page->attr('lang','en');
$page->display('header',false);
$page->display('footer',false);
$page->display('menu',false);
$page->content('intro.php');
$page->useCSSFile('intro.css');
$page->process();
?>