mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
24 lines
723 B
HTML
24 lines
723 B
HTML
<template name="basicTableOfContents">
|
|
<div class="basic-toc">
|
|
<section>
|
|
<h2><a href="#/basic/quickstart">Quick Start</a></h2>
|
|
<h2><a href="#/basic/sevenprinciples">Principles</a></h2>
|
|
<h2><a href="#/basic/learning-resources">Learning Resources</a></h2>
|
|
<h2>Command Line Tool</h2>
|
|
<h2>File Structure</h2>
|
|
<h2>Building Mobile Apps</h2>
|
|
</section>
|
|
|
|
{{#each sections}}
|
|
<section>
|
|
<h2><a href="{{linkForSection}}">{{title}}</a></h2>
|
|
<p class="subtitle">{{subtitle}}</p>
|
|
<ul>
|
|
{{#each items}}
|
|
<li><a href="{{linkForItem}}">{{{name}}}</a></li>
|
|
{{/each}}
|
|
</ul>
|
|
</section>
|
|
{{/each}}
|
|
</div>
|
|
</template> |