%%folder-index-anonymous-html%%
2002-07-18 14:26

%%preprocess%%
// format the object for display
$this->beryliumToHtml(); 
$this->getRuntimeVars();

// convert generic flavor to objtype:
if ($this->flavor=="Generic") $this->flavor= "Folder";

// headline fix if only title
if ($this->title=="" && $this->headline=="") $this->title= "Untitled ($this->name)";
elseif ($this->title=="") $this->title= $this->headline;

// more tag if body exists
if ($this->body!="") $this->moreTag="<a href='$this->baseUrl'>continues</a>&raquo; |";

// alternating rows
$session=$GLOBALS[session];
if ($session->row=="" || $session->row=="odd") {
	$this->rowclass="oddrow";
	}
else {
	$this->rowclass="evenrow";
	}
 
%%header%%



%%css%%



%%template%%
<table class='objTable' cellspacing=5 cellpadding=5>
	<tr class='$this->rowclass'>
		<td>
			<table class='objHeader'>
				<tr>
					<td width='1' valign='middle'>$this->iconTag</td>
					<td>
						<span class='objTitle'><a href="$this->baseUrl">$this->title</a></span>
						<span class='objDescription'><br>$this->description</span>
					</td>
				</tr>
			</table>
		</td>
	</tr>
</table>



%%listrow%%
 



%%nullobject%%
 



%%footer%%



%%postprocess%%



%%end of context%%
