openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit e5bad90cb97fcb49c7b42340b05273d7a9eae38a
parent 8b5b764b4c1dce0ec234150bffa23d7e80cab367
Author: dankert <devnull@localhost>
Date:   Wed, 10 Nov 2004 23:52:06 +0100

Auswahl eines Projektes

Diffstat:
themes/default/pages/html/project/select.tpl.php | 25+++++++++++++++++++++++++
1 file changed, 25 insertions(+), 0 deletions(-)

diff --git a/themes/default/pages/html/project/select.tpl.php b/themes/default/pages/html/project/select.tpl.php @@ -0,0 +1,24 @@ +<?php include( $tpl_dir.'header.tpl.php') ?> + +<!-- $Id$ --> +<center> + +<table class="main" width="50%" cellspacing="0" cellpadding="4"> + +<tr> + <th><?php echo lang('PROJECTS') ?></th> +</tr> + +<?php $f1=true; + foreach( $el as $id=>$e ) + { ?> +<tr> +<td class="<?php if($f1==true) {echo'f1'; } else{echo'f2'; }?>"><a href="<?php echo $e['url'] ?>" target="_top"><img src="<?php echo $image_dir ?>icon_project.png" border="0" align="left"><?php echo $e['name'] ?></a></td> +</tr> +<?php } ?> + + +</table> + +</center> +<?php include( $tpl_dir.'footer.tpl.php') ?>+ \ No newline at end of file