12 lines
153 B
PHP
12 lines
153 B
PHP
<?php
|
|
|
|
include 'php/classes/page.php';
|
|
|
|
$page = new Page();
|
|
|
|
$page->attr('title','History of FTI');
|
|
$page->content('history.php');
|
|
|
|
$page->process();
|
|
|
|
?>
|