2012-07-21 04:33:29 +08:00
|
|
|
<#--
|
2016-05-28 07:47:32 +08:00
|
|
|
This file contains part of the theming neccesary to present GATKDocs on the GATK website. Included are the
|
|
|
|
|
paths to our bootstrap assets as well as helper functions to generate relevant links. Styling is separated
|
|
|
|
|
out, so pages will be minimalistic html unless replacement styling is provided.
|
2011-07-25 04:10:17 +08:00
|
|
|
|
2012-07-21 04:33:29 +08:00
|
|
|
-->
|
2011-07-25 04:10:17 +08:00
|
|
|
|
2017-07-28 12:30:56 +08:00
|
|
|
<#global siteRoot = "https://software.broadinstitute.org/gatk/" />
|
|
|
|
|
<#global guideIndex = "https://software.broadinstitute.org/gatk/documentation/" />
|
|
|
|
|
<#global forum = "https://gatkforums.broadinstitute.org/gatk" />
|
2012-07-21 04:33:29 +08:00
|
|
|
|
|
|
|
|
<#macro footerInfo>
|
2014-08-15 13:04:26 +08:00
|
|
|
<hr>
|
|
|
|
|
<p><a href='#top'><i class='fa fa-chevron-up'></i> Return to top</a></p>
|
2012-07-21 04:33:29 +08:00
|
|
|
<hr>
|
2013-02-13 05:27:18 +08:00
|
|
|
<p class="see-also">See also
|
2016-05-28 07:47:32 +08:00
|
|
|
<a href="${guideIndex}">GATK Documentation Index</a> |
|
|
|
|
|
<a href="index">Tool Docs Index</a> |
|
2013-02-13 05:27:18 +08:00
|
|
|
<a href="${forum}">Support Forum</a>
|
|
|
|
|
</p>
|
2012-07-21 04:33:29 +08:00
|
|
|
|
2013-12-11 02:19:53 +08:00
|
|
|
<p class="version">GATK version ${version} built at ${timestamp}.
|
|
|
|
|
<#-- closing P tag in next macro -->
|
|
|
|
|
</#macro>
|
|
|
|
|
|
|
|
|
|
<#macro footerClose>
|
|
|
|
|
<#-- ugly little hack to enable adding tool-specific info inline -->
|
|
|
|
|
</p>
|
2012-07-21 04:33:29 +08:00
|
|
|
</#macro>
|
|
|
|
|
|
2012-07-25 04:52:06 +08:00
|
|
|
<#macro getCategories groups>
|
2012-07-21 04:33:29 +08:00
|
|
|
<style>
|
|
|
|
|
#sidenav .accordion-body a {
|
|
|
|
|
color : gray;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.accordion-body li {
|
|
|
|
|
list-style : none;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<ul class="nav nav-pills nav-stacked" id="sidenav">
|
2016-05-28 07:47:32 +08:00
|
|
|
<#assign seq = ["engine", "tools", "other", "utilities"]>
|
2013-02-13 05:27:18 +08:00
|
|
|
<#list seq as supercat>
|
|
|
|
|
<hr>
|
|
|
|
|
<#list groups?sort_by("name") as group>
|
|
|
|
|
<#if group.supercat == supercat>
|
|
|
|
|
<li><a data-toggle="collapse" data-parent="#sidenav" href="#${group.id}">${group.name}</a>
|
|
|
|
|
<div id="${group.id}"
|
|
|
|
|
<?php echo ($group == '${group.name}')? 'class="accordion-body collapse in"'.chr(62) : 'class="accordion-body collapse"'.chr(62);?>
|
|
|
|
|
<ul>
|
|
|
|
|
<#list data as datum>
|
|
|
|
|
<#if datum.group == group.name>
|
|
|
|
|
<li>
|
|
|
|
|
<a href="${datum.filename}">${datum.name}</a>
|
|
|
|
|
</li>
|
|
|
|
|
</#if>
|
|
|
|
|
</#list>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
</#if>
|
|
|
|
|
</#list>
|
|
|
|
|
</#list>
|
2012-07-21 04:33:29 +08:00
|
|
|
</ul>
|
|
|
|
|
</#macro>
|