Files
d-t-n.org/production/whoweare.php
2017-03-02 21:36:05 -06:00

17 lines
430 B
PHP

<?php
include 'php/classes/page.php';
include 'functions/func_xml.php';
$page = new Page();
$page->attr('title','Discipling the Nations: Who We Are');
$page->content('whoweare.php');
$page->addCSSFile('whoweare.css');
$page->addJSFile('ssm.js','ssmItems.js','ssmItems_whoweare.js','whoweare.js');
# get the random verse and pass it to the template
$page->data('verse',xml_random_child($FILES['verses']));
$page->process();
?>