Initial commit

This commit is contained in:
Ben Ramey
2015-11-12 19:58:50 -06:00
commit 4eb7f46e4c
86 changed files with 4341 additions and 0 deletions

20
index.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
include 'php/classes/page.php';
include 'functions/func_xml.php';
$page = new Page();
$page->init_user();
$page->attr('title','Your Christian Travel Resource');
$page->content('home.php');
$page->useJSFile('jquery.min.js');
$page->addJSFile('default.js');
# get news items
$news = xml_get_from_file($FILES['news']);
$page->data('news',$news->xpath('newsitem'));
$page->process();
?>