-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathtop-toc.html
26 lines (26 loc) · 1.01 KB
/
top-toc.html
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
<div id="toc-top" class="site-toc dropdown hidden">
<button class="dropdown-button"
title="Toggle the table of contents dropdown"
aria-expanded="false"
aria-controls="toc-dropdown"
aria-label="Toggle the table of contents dropdown">
<span class="toc-intro">
<span class="material-symbols" aria-hidden="true">list</span>
<span aria-label="On this page">On this page</span>
</span>
<span class="toc-current">
<span class="material-symbols" aria-hidden="true">chevron_right</span>
<span id="current-header">{{title}}</span>
</span>
</button>
<div id="toc-dropdown" class="dropdown-content">
<a href="#document-title" id="return-to-top">
<span class="material-symbols" aria-hidden="true">vertical_align_top</span>
<span>{{title}}</span>
</a>
<div aria-hidden="true" class="dropdown-divider" role="separator"></div>
<nav role="menu">
{% render toc-contents.html, tocContents:tocContents %}
</nav>
</div>
</div>