root/website/index.php @ 1653

Revision 1653, 1.0 kB (checked in by kop-labs, 6 years ago)

fixed title

Line 
1<?
2include_once('tbs_class_php4.php');
3
4$title    = 'UMIT v0.1 | ';
5
6$top               = 'template_top.html';
7$template_menu     = 'template_menu.html';
8$template_ad       = 'template_ad_small.html';
9$template_download = '';
10$active            = ($_GET['active']?$_GET['active']:'home');
11$template_page     = 'page_'.$active.'.html';
12$template_footer   = 'template_footer.html';
13$ad_728x90         = 'ad_728x90.html';
14$ad_200x200        = 'ad_200x200.html';
15$site_name         = 'site_name.html';
16$site_slogan       = 'site_slogan.html';
17$site_copyright    = 'site_copyright.html';
18$link_xhtml        = 'link_xhtml.html';
19$link_rss          = 'link_rss.html';
20$link_css          = 'link_css.html';
21$link_language     = 'link_language.html';
22$link_powerdby     = 'link_powerdby.html';
23
24$tbs               = new clsTinyButStrong;
25
26if (file_exists('view/'.$active.'.php'))
27{
28    include('view/'.$active.'.php');
29    //$title = $title. $title_p;
30}
31$tbs->LoadTemplate('templates/index.html');
32$tbs->Show();
33?>
Note: See TracBrowser for help on using the browser.