11 lines
185 B
PHP
Executable File
11 lines
185 B
PHP
Executable File
<?php
|
|
|
|
include "php/classes/page.php";
|
|
|
|
$page = new Page;
|
|
|
|
$page->attr('title','The International Jairus Society : Our Mission');
|
|
$page->content('ourmission.php');
|
|
$page->process();
|
|
|
|
?>
|