From: Jason Woofenden Date: Thu, 3 May 2007 05:34:19 +0000 (-0400) Subject: run.php inserts page-specific css link into global template.html X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=35e4253b00be3446ee4ff00c28b1cf7240dbf334;p=wfpl.git run.php inserts page-specific css link into global template.html --- diff --git a/run.php b/run.php index f449015..3d26e49 100644 --- a/run.php +++ b/run.php @@ -109,6 +109,12 @@ function run_php($basename = false) { if($sections) foreach($sections as $name => $val) { $tem->set($name, $val); } + + if(file_exists("$basename.css")) { + $tem->set('basename', $basename); + $tem->sub('css_links'); + } + $GLOBALS['wfpl_template'] = $tem; }