%%document-list-anonymous-html%%
progmin : / (context #111)
2002-05-27 20:29:29

%%preprocess%%
if ($this->imageid!=0 AND $this->imageid!="") {
  $this->imagetag= "[image:$this->imageid;160,120]";
  $this->imageidtag= " | imageid=$this->imageid ";
  }
$this->beryliumToHtml();
$this->getBaseURL();
if ($this->headline=="") $this->headline="Untitled";

if ($this->description=="") {
$spacepos= strpos($this->body,"<br>");
if ($spacepos) $this->description= substr($this->body,0,$spacepos);
elseif (strlen($this->body)>200 AND $spacepos===false) {
  $spacepos= strpos($this->body," ",180);
  if ($spacepos===false) $this->description= $this->body;
  else $this->description= substr($this->body,0,$spacepos)." ...";
  }
else $this->description= $this->body;
}












%%header%%
<table border=0 cellpadding=5 class='documentList'><tr>












%%css%%
.documentList { margin-left: 18px; }
.documentHeadline { font-family: serif; color: #555555; font-size: 18px; line-height: 24px; font-style: italic; font-weight: bold; }
.documentHeadline A { color: #555555;  text-decoration: underline; }
.documentByline { font-face: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color: green; }
.documentDescription { color: #555588; font-size: 14px; line-height: 20px; margin-left: 12px; }




%%template%%
<td>
$this->imagetag<span class='documentHeadline'><a href='$this->baseURL'>$this->headline</a><br></span>
<span class='documentByline'>By $this->author<br></span> 
<span class='documentDescription'>$this->description</span>
</td>













%%listrow%%
</tr>
<tr>













%%nullobject%%
<td>nothing here</td>













%%footer%%
</tr></table>













%%postprocess%%





%%end of context%%
