JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
run.php inserts page-specific css link into global template.html
authorJason Woofenden <jason183@herkamire.com>
Thu, 3 May 2007 05:34:19 +0000 (01:34 -0400)
committerJason Woofenden <jason183@herkamire.com>
Thu, 3 May 2007 05:34:19 +0000 (01:34 -0400)
run.php

diff --git a/run.php b/run.php
index f449015..3d26e49 100644 (file)
--- 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;
                }