<mef:set title="Project List" />
<mef:tabs array="{tabs}" />
<div class="list-description">{description}</div>
<table id="project-list" width="100%" cellspacing="0">
<thead>
<tr>
<td width="125">Date</td>
<td width="*" colspan="2">Project</td>
</tr>
</thead>
<tbody>
<tr id="p" mef:loop="projects" mef:classes="even,odd">
<td class="date">{p.DateUpdated|nice_date}</td>
<td class="project" mef:attributes="colspan: '2' if !p.image">
<h3><a href="/depot/{p.folder_name}">{p.ProjectTitle}</a></h3>
<p>{p.ProjectDescription|chop(400)}</p>
<small>
<mef:if expr="p.UserRating > 0"><b>Rating:</b> <mef:stars count="{p.UserRating}" /> </mef:if>
<b>Category:</b> <a href="/depot/{p.category_folder}">{p.category}</a>
<b>Developer:</b> <a href="/members/{p.developer_folder}">{p.developer}</a>
<mef:if expr="p.Ports"><b>OS:</b> <mef:depot_ports ports="{p.Ports}" /> </mef:if>
</small>
</td>
<td class="image" mef:if="p.image">
<div class="drop-shadow" style="float: left;">
<img class="shadow" src="/depot/screenshots/{p.image}" />
</div>
</td>
</tr>
</tbody>
</table>