<?php 
    if ($this->infoUser->date != '') {
        ?>
         	<dt>Date: <span style="font-weight: normal"><?php 
        echo date('Y/m/d', strtotime($this->infoUser->date));
        ?>
</span></dt>
         	<?php 
    }
    ?>
         	
         	<?php 
    if ($this->infoUser->website != '') {
        ?>
         	<dt>Website: <span style="font-weight: normal"><?php 
        echo _Function::linkText($this->infoUser->website);
        ?>
</span></dt>
         	<?php 
    }
    ?>
         	
         	<?php 
    if ($this->infoUser->bio != '') {
        ?>
         	<dt>Bio: <span style="font-weight: normal"><?php 
        echo htmlentities($this->infoUser->bio, ENT_QUOTES, 'UTF-8');
        ?>
</span></dt>
         	<?php 
    }