--- index.php 2001/07/09 14:25:36 1.7 +++ index.php 2001/11/05 10:10:51 1.13 @@ -4,7 +4,6 @@ $smarty = new Smarty; - $smarty->assign( array ( Title=>"PLIVA Ljubljana" ) ); $section=str_replace(".php","",basename($PHP_SELF)); @@ -27,13 +26,31 @@ include("sections/$p.inc"); } elseif (file_exists("template/$main_file.tpl")) { $main=$smarty->fetch("$main_file.tpl"); +} elseif (isset($static)) { + if (strstr($static,",")) { + $d=explode(",",$static); // dir,file + } else { + $d=array($static,$static); + } + if (find_html_file("static/$d[0]",$d[1])) { + $main=join('',file(find_html_file("static/$d[0]",$d[1]))); + // fix entities from MS programs + include("fix_msshit.inc"); + $main=fix_msshit($main); + } else { + $main="Can't find static/$d[0]/$d[1]"; + } } elseif (find_html_file("h",$section)) { $main=join('',file(find_html_file("h",$section))); + if (file_exists("sections/$section.inc")) { + include("sections/$section.inc"); + } } elseif (file_exists("sections/$section.inc")) { include("sections/$section.inc"); } else { $main="can't find template or html file for section $section"; } + $smarty->assign(array(section=>$section, mpic=>$mpic, Section_title=>$title,