<?php /** @package CssDispatch */ ?> 
 
/** 
 * CSS Template example 
 * 
 * ¡WARNING! 
 * If you use short tags ("«?=$variable »" instead of "«?php echo $variable »") 
 * make sure that they are enabled in php.ini's short_open_tag directive. 
 * You can enable it in runtime with ini_set("short_open_tag", "on") 
 */ 
 
body { background: <?=$background ?>; } 
 
.news { 
    border: 1px solid <?=$border_color ?>; 
} 
 
.news #date { font-size: <?=$header_size ?>em; }
 
 |