mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
32 lines
814 B
HTML
32 lines
814 B
HTML
<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>
|