31 lines
588 B
HTML
31 lines
588 B
HTML
|
|
<#macro emitGroup group>
|
||
|
|
<table border="1" cellpadding="2">
|
||
|
|
<h2>${group}</h2>
|
||
|
|
<tr>
|
||
|
|
<th>Name</th>
|
||
|
|
<th>Summary</th>
|
||
|
|
</tr>
|
||
|
|
<#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>
|
||
|
|
</table>
|
||
|
|
</#macro>
|
||
|
|
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>GATK documentation index</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>GATK documentation index<h1>
|
||
|
|
<#list groups as group>
|
||
|
|
<@emitGroup group=group/>
|
||
|
|
</#list>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
|