gatk-3.8/settings/helpTemplates/walker.index.template.html

31 lines
588 B
HTML
Raw Normal View History

<#macro emitGroup group>
2011-07-22 21:13:33 +08:00
<table border="1" cellpadding="2">
<h2>${group}</h2>
2011-07-22 21:13:33 +08:00
<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>
2011-07-22 21:13:33 +08:00
</table>
</#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>