blob: 10e9d7c734c6bb9b0a48e8e32bc7a2914316c304 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
$tmpldir = $_SERVER['DOCUMENT_ROOT'] . "/../templates";
$tpl =& new HTML_Template_Sigma($tmpldir."/html");
$tpl->loadTemplateFile('bottom_config.html');
$tpl->parse();
$tpl->show();
?>
|