blob: 0ecfc4f0b67d979a9e9d8d10b8377a14fa578a73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?
class GreyDragon_Controller extends Controller {
public function custom_css() {
// Draw the page.
// $template = new Theme_View("gd_custom.css", "other", "Custom_CSS");
print $template;
}
}
?>
|