forked from NCIP/gdc-docs
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathnav-section-map.html
More file actions
27 lines (25 loc) · 1.1 KB
/
nav-section-map.html
File metadata and controls
27 lines (25 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<div class="col-md-3 toc-container" role="navigation" aria-label="In-Page Navigation">
<div class="bs-sidebar hidden-print affix well animated fadeIn">
<ul class="nav bs-sidenav">
{% for nav_item in nav %}
{% if nav_item.children and nav_item.active %}
{% for sub_nav_item in nav_item.children %}
<li class="{% if sub_nav_item.active %} main active{% endif %}">
<a href="{{ sub_nav_item.url }}">
{{ sub_nav_item.title }}
</a>
{% if page.toc and ((page.toc | first) is defined) and sub_nav_item.active %}
{% include "nav-section-map-toc.html" %}
{% endif %}
</li>
{% if sub_nav_item.title == "Aligned Reads Summary Metrics" %}
<li>
<a href="https://gdc.cancer.gov/about-data/data-harmonization-and-generation/gdc-reference-files" target="_blank"><i class="fa fa-external-link"></i> GDC Reference Files</a>
</li>
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
</ul>
</div>
</div>