Big change to the skin system. Php files are now in ./skins/ . Templates and styleshe...
[lhc/web/wiklou.git] / skins / Chick.php
1 <?php
2 require_once($IP.'/includes/SkinPHPTal.php');
3
4 class SkinChick extends SkinPHPTal {
5 function initPage( &$out ) {
6 SkinPHPTal::initPage( $out );
7 $this->skinname = 'chick';
8 $this->template = 'xhtml_minimal';
9 }
10 function suppressUrlExpansion() { return true; }
11 function printSource() { return ''; }
12 }
13
14 ?>