2011-07-23 01:18:33 +08:00
|
|
|
<#macro emitGroup group>
|
2011-07-22 21:13:33 +08:00
|
|
|
<table border="1" cellpadding="2">
|
2011-07-23 01:18:33 +08:00
|
|
|
<h2>${group}</h2>
|
2011-07-22 21:13:33 +08:00
|
|
|
<tr>
|
|
|
|
|
<th>Name</th>
|
|
|
|
|
<th>Summary</th>
|
|
|
|
|
</tr>
|
2011-07-23 01:18:33 +08:00
|
|
|
<#list data as datum>
|
|
|
|
|
<#if datum.group == group>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><a href="${datum.filename}">${datum.name}</a></td>
|
|
|
|
|
<td>${datum.summary}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</#if>
|
|
|
|
|
</#list>
|
2011-07-22 21:13:33 +08:00
|
|
|
</table>
|
2011-07-23 01:18:33 +08:00
|
|
|
</#macro>
|
|
|
|
|
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>GATK documentation index</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<h1>GATK documentation index<h1>
|
|
|
|
|
<#list groups as group>
|
|
|
|
|
<@emitGroup group=group/>
|
|
|
|
|
</#list>
|
2011-07-22 21:13:33 +08:00
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|