forked from meteor/meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoc.html
More file actions
31 lines (30 loc) · 814 Bytes
/
toc.html
File metadata and controls
31 lines (30 loc) · 814 Bytes
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
28
29
30
31
<template name="basicTableOfContents">
<div class="basic-toc {{layoutHidden 'basic'}}">
{{#each sections}}
<section>
{{#each subsections}}
<h2><a href="{{linkForItem}}"
class="{{maybeCurrent}}">{{title}}
</a></h2>
{{/each}}
{{#if title}}
<h2><a href="{{linkForItem}}"
class="{{maybeCurrent}}">{{title}}
</a></h2>
{{/if}}
{{#if subtitle}}
<p class="subtitle">{{subtitle}}</p>
{{/if}}
{{#if items}}
<ul>
{{#each items}}
<li>
<a href="{{linkForItem}}" class="{{maybeCurrent}}">{{{name}}}</a>
</li>
{{/each}}
</ul>
{{/if}}
</section>
{{/each}}
</div>
</template>