initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:36:05 -06:00
commit e85327b977
1953 changed files with 176586 additions and 0 deletions

13
production/menu.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
include 'php/classes/page.php';
$page = new Page();
$page->attr('title','Discipling the Nations: Main Menu');
$page->content('graphical_menu.php');
$page->display('menu',false);
$page->useCSSFile('intro_menu.css');
$page->process();
?>