summaryrefslogtreecommitdiff
blob: 82a7f688cba983e360365b1d795e910daadd0fa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
function init_stylesheet() {
	global $state;
	contenttype('text/css');
}
function body_stylesheet() {
	global $conf;
	foreach (glob('css/*.css') as $file) {
		require($file);
	}
}
?>